/** Shopify CDN: Minification failed

Line 66:0 All "@import" rules must come first

**/
/* ============================================================
   FROMYHEART — Polish design tokens & shared component styles
   Loaded once via theme.liquid. All new sections rely on these
   variables. Override in your theme settings if needed.
   ============================================================ */

:root {
  /* ---------- Palette ---------- */
  --fyh-bg:           #FBF7F2;   /* ivory */
  --fyh-bg-alt:       #F4ECE2;   /* warm cream for striped sections */
  --fyh-surface:      #FFFFFF;
  --fyh-text:         #1F1B18;   /* deep charcoal */
  --fyh-text-muted:   #6B6661;
  --fyh-text-subtle:  #9A938C;
  --fyh-border:       #E8DFD2;
  --fyh-accent:       #B08D57;   /* brushed gold (default) */
  --fyh-accent-deep:  #8C6F42;
  --fyh-accent-soft:  #E8C9C1;   /* blush */
  --fyh-success:      #4A7C5A;
  --fyh-danger:       #B0413E;
  --fyh-overlay:      rgba(31, 27, 24, 0.42);

  /* ---------- Typography ---------- */
  --fyh-font-serif:   'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --fyh-font-sans:    'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fyh-fs-display:   clamp(2.4rem, 5.2vw, 4.4rem);
  --fyh-fs-h1:        clamp(2rem, 4vw, 3.2rem);
  --fyh-fs-h2:        clamp(1.6rem, 3vw, 2.4rem);
  --fyh-fs-h3:        clamp(1.2rem, 2vw, 1.5rem);
  --fyh-fs-body:      1rem;
  --fyh-fs-small:     0.875rem;
  --fyh-fs-tiny:      0.75rem;

  --fyh-lh-tight:     1.15;
  --fyh-lh-base:      1.55;

  --fyh-tracking-wide: 0.14em;

  /* ---------- Spacing rhythm ---------- */
  --fyh-pad-section:  clamp(56px, 8vw, 96px);
  --fyh-pad-block:    clamp(20px, 3vw, 32px);
  --fyh-gap-grid:     clamp(16px, 2vw, 24px);
  --fyh-radius-sm:    6px;
  --fyh-radius-md:    10px;
  --fyh-radius-lg:    18px;

  /* ---------- Motion ---------- */
  --fyh-ease:         cubic-bezier(0.22, 0.61, 0.36, 1);
  --fyh-dur-fast:     180ms;
  --fyh-dur-base:     320ms;
  --fyh-dur-slow:     600ms;

  /* ---------- Elevation ---------- */
  --fyh-shadow-sm:    0 1px 2px rgba(31,27,24,.06), 0 1px 3px rgba(31,27,24,.04);
  --fyh-shadow-md:    0 6px 18px rgba(31,27,24,.08);
  --fyh-shadow-lg:    0 18px 48px rgba(31,27,24,.12);
}

/* ---------- Webfont loading (Google Fonts) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   Global resets scoped to .fyh root containers (so we don't
   accidentally override the rest of the theme)
   ============================================================ */

.fyh,
.fyh * {
  box-sizing: border-box;
}

.fyh {
  font-family: var(--fyh-font-sans);
  color: var(--fyh-text);
  line-height: var(--fyh-lh-base);
  font-size: var(--fyh-fs-body);
  -webkit-font-smoothing: antialiased;
}

.fyh h1, .fyh h2, .fyh h3, .fyh h4, .fyh-display {
  font-family: var(--fyh-font-serif);
  font-weight: 500;
  line-height: var(--fyh-lh-tight);
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
}

.fyh h1 { font-size: var(--fyh-fs-h1); }
.fyh h2 { font-size: var(--fyh-fs-h2); }
.fyh h3 { font-size: var(--fyh-fs-h3); }
.fyh-display { font-size: var(--fyh-fs-display); }

.fyh p { margin: 0 0 1em; color: var(--fyh-text-muted); }
.fyh small { font-size: var(--fyh-fs-small); color: var(--fyh-text-muted); }

.fyh .eyebrow {
  display: inline-block;
  font-family: var(--fyh-font-sans);
  font-size: var(--fyh-fs-tiny);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--fyh-tracking-wide);
  color: var(--fyh-accent);
  margin-bottom: 0.6em;
}

/* ---------- Buttons ---------- */

.fyh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--fyh-font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--fyh-radius-sm);
  cursor: pointer;
  transition: transform var(--fyh-dur-fast) var(--fyh-ease),
              background var(--fyh-dur-base) var(--fyh-ease),
              color var(--fyh-dur-base) var(--fyh-ease),
              border-color var(--fyh-dur-base) var(--fyh-ease);
  white-space: nowrap;
}

.fyh-btn:active { transform: translateY(1px); }

.fyh-btn--primary {
  background: var(--fyh-text);
  color: var(--fyh-bg);
}
.fyh-btn--primary:hover {
  background: var(--fyh-accent-deep);
  color: #fff;
}

.fyh-btn--gold {
  background: var(--fyh-accent);
  color: #fff;
}
.fyh-btn--gold:hover { background: var(--fyh-accent-deep); }

.fyh-btn--ghost {
  background: transparent;
  color: var(--fyh-text);
  border-color: var(--fyh-text);
}
.fyh-btn--ghost:hover {
  background: var(--fyh-text);
  color: var(--fyh-bg);
}

.fyh-btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.fyh-btn--ghost-light:hover {
  background: #fff;
  color: var(--fyh-text);
}

/* ---------- Section container ---------- */

.fyh-section {
  padding: var(--fyh-pad-section) 0;
  background: var(--fyh-bg);
}
.fyh-section--alt { background: var(--fyh-bg-alt); }
.fyh-section--dark { background: var(--fyh-text); color: var(--fyh-bg); }
.fyh-section--dark h1, .fyh-section--dark h2, .fyh-section--dark h3 { color: var(--fyh-bg); }
.fyh-section--dark p { color: rgba(251,247,242,0.78); }

.fyh-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.fyh-section__head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.fyh-section__head p { max-width: 56ch; margin-inline: auto; }

/* ---------- Unified product badge (top-right pill) ---------- */

.fyh-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  z-index: 3;
  pointer-events: none;
}

.fyh-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--fyh-text);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1;
}

/* The single brand-consistent sale pill, used everywhere */
.fyh-badge--sale {
  background: linear-gradient(135deg, var(--fyh-accent, #b08d57) 0%, var(--fyh-accent-deep, #8e6f3f) 100%);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 6px 14px -8px rgba(176,141,87,0.55);
}

.fyh-badge--soldout {
  background: rgba(31,27,24,0.78);
  color: #fff;
  box-shadow: 0 4px 10px -6px rgba(31,27,24,0.4);
}

/* Legacy stubs retained as no-ops in case anything still references them */
.fyh-badge--low,
.fyh-badge--best,
.fyh-badge--new { display: none !important; }

/* Wrapper used by Rebel's _product-card-gallery so badges hover the Rebel image */
.fyh-card-badges-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.fyh-card-badges-overlay .fyh-badges {
  position: static;
  top: auto; right: auto;
  align-items: flex-end;
}

/* Hide Rebel's native sale / sold-out tag (top-left rectangle) so we don't
   end up with two badges on the same card. We provide a single, consistent
   gold pill via .fyh-card-badges-overlay above. */
.product-badges,
.card-gallery .product-badges,
.product-badges__badge { display: none !important; }

/* Round Rebel-rendered product cards on collection pages, search, etc. so
   they match Best Sellers / PDP / Lookbook visually. */
.card-gallery {
  border-radius: var(--fyh-radius-md, 14px) !important;
  overflow: hidden !important;
}
.card-gallery .product-media-container,
.card-gallery .product-media-container img,
.card-gallery picture,
.card-gallery img {
  border-radius: inherit;
}

/* ---------- Product card hover image swap ---------- */

.fyh-card { position: relative; }
.fyh-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--fyh-radius-md);
  background: var(--fyh-bg-alt);
}
.fyh-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--fyh-dur-base) var(--fyh-ease),
              transform var(--fyh-dur-slow) var(--fyh-ease);
}
.fyh-card__media img.is-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.fyh-card:hover .fyh-card__media img.is-primary { opacity: 0; transform: scale(1.04); }
.fyh-card:hover .fyh-card__media img.is-secondary { opacity: 1; transform: scale(1.04); }
.fyh-card:not(:hover) .fyh-card__media img.is-primary { transform: scale(1); }

/* Quick-add — theme button styles; this class only handles overlay position & reveal */
.fyh-card__quickadd {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 8px);
  opacity: 0;
  transition: opacity var(--fyh-dur-base) var(--fyh-ease),
              transform var(--fyh-dur-base) var(--fyh-ease);
  pointer-events: none;
  z-index: 2;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 24px);
}
.fyh-card__atc-inner {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-2xs, 0.35rem);
}
.fyh-card__atc-inner .svg-wrapper {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fyh-card__atc-label {
  max-width: 12rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fyh-card:hover .fyh-card__quickadd {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
@media (max-width: 749px) {
  .fyh-card__quickadd { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
}

.fyh-card__info { padding: 12px 4px 4px; text-align: left; }
.fyh-card__title {
  font-family: var(--fyh-font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fyh-text);
  text-decoration: none;
  display: block;
  margin: 0 0 4px;
}
.fyh-card__price-current { font-weight: 600; color: var(--fyh-text); }
.fyh-card__price-compare { color: var(--fyh-text-subtle); text-decoration: line-through; margin-left: 8px; font-size: 0.875rem; }
.fyh-card__inv {
  margin-top: 6px;
  font-size: var(--fyh-fs-tiny);
  color: var(--fyh-danger);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Trust strip (colorful, scrolling marquee) ---------- */

.fyh-trust {
  position: relative;
  padding: 22px 0;
  border-block: 1px solid var(--fyh-border);
  overflow: hidden;
  isolation: isolate;
}

/* Soft animated gradient background */
.fyh-trust__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      #fbe9e3 0%,
      #f7eddc 22%,
      #e6efe5 50%,
      #ece6f1 78%,
      #fbe9e3 100%);
  background-size: 200% 100%;
  animation: fyh-trust-bg 18s ease-in-out infinite;
  opacity: 0.65;
}
@keyframes fyh-trust-bg {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

.fyh-trust__viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.fyh-trust__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: fyh-trust-marquee var(--fyh-trust-speed, 36s) linear infinite;
  will-change: transform;
}
@keyframes fyh-trust-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.fyh-trust:hover .fyh-trust__track,
.fyh-trust:focus-within .fyh-trust__track { animation-play-state: paused; }

.fyh-trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding-inline: 22px;
  color: var(--fyh-text);
  font-size: var(--fyh-fs-small, 0.92rem);
}

.fyh-trust__icon {
  --fyh-c-deep: #d97a5b;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--fyh-c-deep), color-mix(in srgb, var(--fyh-c-deep) 70%, white));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    0 6px 14px -8px color-mix(in srgb, var(--fyh-c-deep) 70%, transparent);
  transition: transform .35s var(--fyh-ease, ease);
}
.fyh-trust__icon svg { width: 22px; height: 22px; }
.fyh-trust__item:hover .fyh-trust__icon { transform: rotate(-6deg) scale(1.06); }

.fyh-trust__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}
.fyh-trust__label {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  color: var(--fyh-text);
}
.fyh-trust__sub {
  font-size: 0.78rem;
  color: var(--fyh-text-muted);
  letter-spacing: 0.01em;
}

.fyh-trust__sep {
  display: inline-flex;
  margin-left: 22px;
  color: var(--fyh-accent);
  opacity: 0.55;
}
.fyh-trust__sep svg { width: 11px; height: 11px; }

/* Per-item palette (cycles 1-6 to support up to 6 blocks) */
.fyh-trust__item[data-palette="1"] .fyh-trust__icon { --fyh-c-deep: #d97a5b; } /* blush rose */
.fyh-trust__item[data-palette="2"] .fyh-trust__icon { --fyh-c-deep: #7ba07e; } /* sage      */
.fyh-trust__item[data-palette="3"] .fyh-trust__icon { --fyh-c-deep: #caa14b; } /* honey     */
.fyh-trust__item[data-palette="4"] .fyh-trust__icon { --fyh-c-deep: #9b85b6; } /* lilac     */
.fyh-trust__item[data-palette="5"] .fyh-trust__icon { --fyh-c-deep: #6f9bb0; } /* sky       */
.fyh-trust__item[data-palette="6"] .fyh-trust__icon { --fyh-c-deep: #c47a98; } /* mauve     */

@media (max-width: 749px) {
  .fyh-trust { padding: 16px 0; }
  .fyh-trust__icon { width: 38px; height: 38px; border-radius: 12px; }
  .fyh-trust__icon svg { width: 20px; height: 20px; }
  .fyh-trust__item { padding-inline: 16px; gap: 11px; }
  .fyh-trust__sep { margin-left: 16px; }
  .fyh-trust__label { font-size: 0.9rem; }
  .fyh-trust__sub { font-size: 0.74rem; }
}

@media (prefers-reduced-motion: reduce) {
  .fyh-trust__track { animation: none; transform: translate3d(0,0,0); }
  .fyh-trust__bg { animation: none; }
  .fyh-trust__viewport {
    -webkit-mask-image: none;
            mask-image: none;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .fyh-trust__viewport::-webkit-scrollbar { display: none; }
  .fyh-trust__item:hover .fyh-trust__icon { transform: none; }
}

/* ---------- Hero ---------- */

.fyh-hero { position: relative; min-height: clamp(440px, 70vh, 720px); overflow: hidden; }
.fyh-hero__media { position: absolute; inset: 0; }
.fyh-hero__media img,
.fyh-hero__media video { width: 100%; height: 100%; object-fit: cover; }
.fyh-hero__overlay { position: absolute; inset: 0; background: var(--fyh-overlay); }
.fyh-hero__inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(24px, 6vw, 80px);
  color: #fff;
  max-width: 720px;
}
.fyh-hero__inner .eyebrow { color: var(--fyh-accent-soft); }
.fyh-hero__inner h1 { color: #fff; }
.fyh-hero__inner p { color: rgba(255,255,255,0.88); max-width: 48ch; }
.fyh-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------- Collection tiles (Shop-by-Category — Editorial) ---------- */

/* Default: 2 columns on mobile, even tiles, no spanning */
.fyh-tiles__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* Tablet: 3 even columns */
@media (min-width: 750px) {
  .fyh-tiles__grid { gap: 22px; }
  .fyh-tiles__grid--editorial {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Desktop: editorial grid — first tile is a tall hero spanning 2 rows */
@media (min-width: 990px) {
  .fyh-tiles__grid--editorial {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 320px;
    gap: 28px;
  }
  .fyh-tiles__grid--editorial > .fyh-tile:first-child {
    grid-row: span 2;
  }
}
@media (min-width: 1200px) {
  .fyh-tiles__grid--editorial {
    grid-auto-rows: 360px;
  }
}

.fyh-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--fyh-text);
  isolation: isolate;
  transition: transform var(--fyh-dur-md) var(--fyh-ease);
}
.fyh-tile:hover { transform: translateY(-3px); }

/* Media frame — fixed aspect on mobile/tablet; fills cell on desktop editorial */
.fyh-tile__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 14px;
  background: var(--fyh-bg-alt);
  box-shadow: 0 1px 2px rgba(31,27,24,0.06);
  transition: box-shadow var(--fyh-dur-md) var(--fyh-ease);
}
.fyh-tile:hover .fyh-tile__media {
  box-shadow: 0 14px 38px -18px rgba(31,27,24,0.35), 0 4px 10px -4px rgba(31,27,24,0.12);
}

/* On desktop editorial, the media expands to fill the (taller) grid cell */
@media (min-width: 990px) {
  .fyh-tiles__grid--editorial > .fyh-tile {
    min-height: 0;
  }
  .fyh-tiles__grid--editorial > .fyh-tile .fyh-tile__media {
    aspect-ratio: auto;
    flex: 1 1 auto;
    min-height: 0;
  }
}

.fyh-tile__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(.22,.61,.36,1), filter 600ms ease;
  will-change: transform;
}
.fyh-tile:hover .fyh-tile__media img,
.fyh-tile:focus-visible .fyh-tile__media img {
  transform: scale(1.08);
}

/* Subtle vignette at the bottom of the image — gives depth + makes the index legible */
.fyh-tile__vignette {
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(31,27,24,0) 0%, rgba(31,27,24,0.42) 100%);
  opacity: 0.85;
  transition: opacity var(--fyh-dur-md) var(--fyh-ease);
}
.fyh-tile:hover .fyh-tile__vignette { opacity: 1; }

/* Editorial number prefix in the corner of the image */
.fyh-tile__index {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  color: rgba(255,255,255,0.92);
  font-family: var(--fyh-font-serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}
@media (min-width: 990px) {
  .fyh-tile__index { top: 18px; left: 20px; font-size: 1.05rem; }
}

/* Caption below image */
.fyh-tile__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px 4px 0;
}

/* Brushed-gold accent line above the label, animates wider on hover */
.fyh-tile__rule {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--fyh-accent);
  transition: width var(--fyh-dur-md) var(--fyh-ease), background var(--fyh-dur-md) var(--fyh-ease);
}
.fyh-tile:hover .fyh-tile__rule,
.fyh-tile:focus-visible .fyh-tile__rule {
  width: 56px;
  background: var(--fyh-accent-deep);
}

.fyh-tile__label {
  font-family: var(--fyh-font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fyh-text);
  line-height: 1;
}
@media (min-width: 990px) {
  .fyh-tile__label { font-size: 1.25rem; letter-spacing: 0.3em; }
}

.fyh-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fyh-text-muted);
  transition: color var(--fyh-dur-md) var(--fyh-ease), gap var(--fyh-dur-md) var(--fyh-ease);
}
.fyh-tile__cta > span {
  position: relative;
  padding-bottom: 2px;
}
.fyh-tile__cta > span::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.4);
  transform-origin: left center;
  transition: transform var(--fyh-dur-md) var(--fyh-ease);
}
.fyh-tile__arrow {
  width: 14px;
  height: 9px;
  transition: transform var(--fyh-dur-md) var(--fyh-ease);
}
.fyh-tile:hover .fyh-tile__cta,
.fyh-tile:focus-visible .fyh-tile__cta {
  color: var(--fyh-accent-deep);
  gap: 12px;
}
.fyh-tile:hover .fyh-tile__cta > span::after,
.fyh-tile:focus-visible .fyh-tile__cta > span::after {
  transform: scaleX(1);
}
.fyh-tile:hover .fyh-tile__arrow,
.fyh-tile:focus-visible .fyh-tile__arrow {
  transform: translateX(4px);
}

.fyh-tile__placeholder { display: block; width: 100%; height: 100%; }
.fyh-tile__placeholder svg { width: 100%; height: 100%; }

@media (prefers-reduced-motion: reduce) {
  .fyh-tile,
  .fyh-tile__media,
  .fyh-tile__media img,
  .fyh-tile__vignette,
  .fyh-tile__rule,
  .fyh-tile__cta,
  .fyh-tile__cta > span::after,
  .fyh-tile__arrow {
    transition: none !important;
  }
  .fyh-tile:hover { transform: none; }
  .fyh-tile:hover .fyh-tile__media img { transform: none; }
}

/* ---------- Header polish: ensure menu is always readable ---------- */
.shopify-section--header,
section[id^="shopify-section-sections--"][id*="header"] {
  position: relative;
  z-index: 50;
}

/* ---------- Product grid ---------- */

.fyh-products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: var(--fyh-gap-grid);
}
@media (min-width: 750px)  { .fyh-products__grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1100px) { .fyh-products__grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* ---------- Reviews ---------- */

/* legacy / unused — kept for backward compat if old block exists */
.fyh-reviews__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}
@media (min-width: 900px) {
  .fyh-reviews__top { grid-template-columns: 280px 1fr; }
}
.fyh-reviews__stat {
  background: var(--fyh-surface);
  border: 1px solid var(--fyh-border);
  border-radius: var(--fyh-radius-md);
  padding: 28px;
  text-align: center;
}
.fyh-reviews__num { font-family: var(--fyh-font-serif); font-size: 3rem; line-height: 1; }
.fyh-reviews__stars { color: var(--fyh-accent); letter-spacing: 0.1em; font-size: 1.25rem; margin: 8px 0; }
.fyh-reviews__count { font-size: var(--fyh-fs-small); color: var(--fyh-text-muted); }

.fyh-reviews__shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.fyh-reviews__shot {
  border-radius: var(--fyh-radius-md);
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--fyh-bg-alt);
}
.fyh-reviews__shot img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAQ accordion ---------- */

.fyh-faq__list { max-width: 760px; margin: 0 auto; }
.fyh-faq__item {
  border-block-end: 1px solid var(--fyh-border);
}
.fyh-faq__item:first-child { border-block-start: 1px solid var(--fyh-border); }
.fyh-faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  font-family: var(--fyh-font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fyh-text);
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.fyh-faq__q::after {
  content: '';
  width: 12px; height: 12px;
  border-right: 1.5px solid var(--fyh-text);
  border-bottom: 1.5px solid var(--fyh-text);
  transform: rotate(45deg);
  transition: transform var(--fyh-dur-base) var(--fyh-ease);
  flex-shrink: 0;
}
.fyh-faq__item[open] .fyh-faq__q::after { transform: rotate(-135deg); }
.fyh-faq__a {
  padding: 0 0 22px;
  color: var(--fyh-text-muted);
  line-height: 1.6;
}

/* ---------- Newsletter (legacy compat) ---------- */

.fyh-newsletter { text-align: center; }
.fyh-newsletter__form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 24px auto 0;
}
.fyh-newsletter__form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--fyh-border);
  border-radius: var(--fyh-radius-sm);
  font-family: var(--fyh-font-sans);
  font-size: 0.95rem;
  background: var(--fyh-surface);
}
.fyh-newsletter__note { font-size: var(--fyh-fs-tiny); color: var(--fyh-text-muted); margin-top: 12px; }

/* ---------- Newsletter (Zula-style split) ---------- */

.fyh-newsletter-section {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 64px);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 218, 224, 0.55) 0%, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(244, 220, 195, 0.55) 0%, transparent 55%),
    linear-gradient(180deg, #fdf6ee 0%, #fbeae3 100%);
}
.fyh-newsletter-section--alt {
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 220, 196, 0.55) 0%, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 218, 224, 0.55) 0%, transparent 55%),
    linear-gradient(180deg, #fbf6ef 0%, #f3e6d6 100%);
}

/* Soft drifting blobs */
.fyh-newsletter-section__bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.fyh-newsletter-section__bg-blob--a {
  width: 360px; height: 360px;
  top: -100px; right: 8%;
  background: radial-gradient(circle, #f7c8d6 0%, #f7c8d6 35%, transparent 70%);
  opacity: 0.45;
}
.fyh-newsletter-section__bg-blob--b {
  width: 420px; height: 420px;
  bottom: -140px; left: 6%;
  background: radial-gradient(circle, #e7d9bb 0%, #e7d9bb 35%, transparent 70%);
  opacity: 0.45;
}

.fyh-newsletter-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 990px) {
  .fyh-newsletter-section__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(48px, 5vw, 80px);
  }
  .fyh-newsletter-section[data-image-position="right"] .fyh-newsletter-section__media  { order: 2; }
  .fyh-newsletter-section[data-image-position="right"] .fyh-newsletter-section__panel  { order: 1; }
}

/* ----- Image side ----- */
.fyh-newsletter-section__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(31,27,24,0.05),
    0 32px 60px -32px rgba(31,27,24,0.30);
  aspect-ratio: 4 / 5;
  background: #f5e8df;
}
.fyh-newsletter-section__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--fyh-ease, ease);
}
.fyh-newsletter-section__media:hover img { transform: scale(1.04); }

/* Floating "Limited offer" badge */
.fyh-newsletter-section__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--fyh-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fyh-text);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 20px -10px rgba(31,27,24,0.25);
}
.fyh-newsletter-section__badge svg {
  width: 14px;
  height: 14px;
  color: #c47a98;
}

/* ----- Panel side ----- */
.fyh-newsletter-section__panel {
  display: flex;
  align-items: center;
}
.fyh-newsletter-section__panel-inner {
  width: 100%;
  max-width: 520px;
}

.fyh-newsletter-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b07d8e;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(180, 125, 142, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.fyh-newsletter-section__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c47a98;
  box-shadow: 0 0 0 4px rgba(196, 122, 152, 0.18);
}

.fyh-newsletter-section__heading {
  font-family: var(--fyh-font-serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0 0 16px;
  color: var(--fyh-text);
}
.fyh-newsletter-section__heading::first-line {
  /* subtle highlight on first words via :first-line cannot color partials reliably,
     so we keep it consistent and rely on accent below. */
}

.fyh-newsletter-section__sub {
  margin: 0 0 28px;
  color: var(--fyh-text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

/* Perks list */
.fyh-newsletter-section__perks {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.fyh-newsletter-section__perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--fyh-text);
}
.fyh-newsletter-section__perk-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #f7c8d6, #f3a8bf);
  color: #6e2f47;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.fyh-newsletter-section__perk-icon svg { width: 16px; height: 16px; }
.fyh-newsletter-section__perk:nth-child(2) .fyh-newsletter-section__perk-icon {
  background: linear-gradient(135deg, #f7e1bc, #e8c989); color: #6c4f17;
}
.fyh-newsletter-section__perk:nth-child(3) .fyh-newsletter-section__perk-icon {
  background: linear-gradient(135deg, #e0eadf, #b6cdb6); color: #365c3a;
}
.fyh-newsletter-section__perk:nth-child(4) .fyh-newsletter-section__perk-icon {
  background: linear-gradient(135deg, #e3dbef, #c5b6dc); color: #473659;
}

/* Form */
.fyh-newsletter-section__form-wrap { width: 100%; }
.fyh-newsletter-section__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(31, 27, 24, 0.08);
  border-radius: 999px;
  padding: 6px;
  box-shadow:
    0 1px 2px rgba(31,27,24,0.04),
    0 18px 36px -22px rgba(31,27,24,0.25);
  transition: box-shadow var(--fyh-dur-base) var(--fyh-ease, ease),
              border-color var(--fyh-dur-base) var(--fyh-ease, ease);
}
.fyh-newsletter-section__form:focus-within {
  border-color: rgba(196, 122, 152, 0.45);
  box-shadow:
    0 0 0 4px rgba(196, 122, 152, 0.12),
    0 18px 36px -22px rgba(31,27,24,0.30);
}

.fyh-newsletter-section__field {
  position: relative;
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  min-width: 0;
}
.fyh-newsletter-section__field-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--fyh-text-muted);
  pointer-events: none;
}
.fyh-newsletter-section__field input[type="email"] {
  width: 100%;
  padding: 14px 18px 14px 46px;
  border: 0;
  background: transparent;
  font-family: var(--fyh-font-sans);
  font-size: 0.98rem;
  color: var(--fyh-text);
  border-radius: 999px;
  outline: none;
}
.fyh-newsletter-section__field input::placeholder { color: rgba(31,27,24,0.45); }

.fyh-newsletter-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: linear-gradient(135deg, #1f1b18 0%, #3a2c25 100%);
  color: #fdf6ee;
  border: 0;
  border-radius: 999px;
  font-family: var(--fyh-font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--fyh-dur-base) var(--fyh-ease, ease),
              box-shadow var(--fyh-dur-base) var(--fyh-ease, ease),
              background var(--fyh-dur-base) var(--fyh-ease, ease);
  box-shadow: 0 6px 18px -8px rgba(31,27,24,0.4);
}
.fyh-newsletter-section__btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--fyh-dur-base) var(--fyh-ease, ease);
}
.fyh-newsletter-section__btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #b07d4f 0%, #c47a98 100%);
  box-shadow: 0 14px 28px -12px rgba(196, 122, 152, 0.55);
}
.fyh-newsletter-section__btn:hover svg { transform: translateX(3px); }
.fyh-newsletter-section__btn:active { transform: translateY(0); }

.fyh-newsletter-section__feedback {
  margin: 14px 4px 0;
  font-size: 0.9rem;
}
.fyh-newsletter-section__feedback--ok  { color: var(--fyh-success, #2f7a4d); }
.fyh-newsletter-section__feedback--err { color: var(--fyh-danger,  #b53737); }

.fyh-newsletter-section__note {
  margin: 16px 4px 0;
  font-size: 0.78rem;
  color: var(--fyh-text-muted);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

@media (max-width: 749px) {
  .fyh-newsletter-section { padding: clamp(40px, 10vw, 64px) clamp(16px, 4vw, 28px); }
  .fyh-newsletter-section__media { aspect-ratio: 4 / 5; max-width: 520px; margin-inline: auto; width: 100%; }
  .fyh-newsletter-section__form { flex-direction: column; border-radius: 22px; padding: 10px; }
  .fyh-newsletter-section__field input[type="email"] { padding: 14px 18px 14px 44px; }
  .fyh-newsletter-section__btn { justify-content: center; padding: 14px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .fyh-newsletter-section__media:hover img,
  .fyh-newsletter-section__btn:hover,
  .fyh-newsletter-section__btn:hover svg { transform: none; }
}

/* ---------- Founder note ---------- */

.fyh-founder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .fyh-founder { grid-template-columns: 1fr 1.2fr; gap: 64px; }
}
.fyh-founder__img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--fyh-radius-lg);
  overflow: hidden;
  background: var(--fyh-bg-alt);
  box-shadow:
    0 30px 60px -30px rgba(31,27,24,0.30),
    0 8px 18px -10px rgba(31,27,24,0.12);
}
.fyh-founder__img::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 60% at 50% 100%, rgba(31,27,24,0.18), transparent 65%);
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.fyh-founder__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1.2s var(--fyh-ease);
}
.fyh-founder__img:hover img { transform: scale(1.03); }

/* Gold "stamp" sparkle on the photo frame */
.fyh-founder__img::before {
  content: "";
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #f0d59b 0%, var(--fyh-accent) 60%, var(--fyh-accent-deep, #8e6f3f) 100%);
  box-shadow:
    0 6px 14px -6px rgba(176,141,87,0.55),
    inset 0 1px 0 rgba(255,255,255,0.5);
  z-index: 2;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 3l1.6 6.4L20 11l-6.4 1.6L12 19l-1.6-6.4L4 11l6.4-1.6z'/%3E%3C/svg%3E"),
    radial-gradient(circle at 30% 30%, #f0d59b 0%, var(--fyh-accent) 60%, var(--fyh-accent-deep, #8e6f3f) 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 22px 22px, 100% 100%;
  animation: fyh-founder-stamp 5s ease-in-out infinite;
}
@keyframes fyh-founder-stamp {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50%      { transform: rotate(-12deg) scale(1.05); }
}

@media (max-width: 749px) {
  .fyh-founder__img::before { width: 36px; height: 36px; background-size: 18px 18px, 100% 100%; }
}
.fyh-founder__signature {
  font-family: var(--fyh-font-serif);
  font-style: italic;
  font-size: 1.5rem;
  margin-top: 16px;
}

/* ---------- Announcement bar rotator ---------- */

.fyh-announce {
  background: var(--fyh-text);
  color: var(--fyh-bg);
  font-size: var(--fyh-fs-small);
  letter-spacing: 0.04em;
  text-align: center;
  overflow: hidden;
  height: 40px;
  position: relative;
}
.fyh-announce__track {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.fyh-announce__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 600ms var(--fyh-ease);
  padding: 0 16px;
}
.fyh-announce__slide.is-active { opacity: 1; }
.fyh-announce__slide a { color: var(--fyh-accent-soft); text-decoration: underline; margin-left: 6px; }


/* ---------- Reviews — "You & FROMYHEART" (editorial) ---------- */

.fyh-reviews { /* layout root */ }

/* Hero aggregate block */
.fyh-reviews__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 auto 36px;
  text-align: center;
}
@media (min-width: 750px) { .fyh-reviews__hero { margin-bottom: 48px; gap: 10px; } }

.fyh-reviews__hero-num {
  font-family: var(--fyh-font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  color: var(--fyh-text);
  letter-spacing: 0.01em;
}
.fyh-reviews__hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--fyh-accent);
  margin-top: 2px;
}
.fyh-reviews__hero-stars svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  filter: drop-shadow(0 1px 1px rgba(176,141,87,0.18));
}
@media (min-width: 750px) {
  .fyh-reviews__hero-stars svg { width: 26px; height: 26px; }
}
.fyh-reviews__hero-meta {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fyh-text-muted);
  margin-top: 2px;
}

/* Card grid */
.fyh-reviews__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .fyh-reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
}
@media (min-width: 990px) {
  .fyh-reviews__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
}

/* Review card */
.fyh-review-card {
  position: relative;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(31,27,24,0.08);
  border-radius: 14px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 1px 2px rgba(31,27,24,0.04);
  transition: transform var(--fyh-dur-md) var(--fyh-ease),
              box-shadow var(--fyh-dur-md) var(--fyh-ease),
              border-color var(--fyh-dur-md) var(--fyh-ease);
  isolation: isolate;
}
.fyh-section--alt .fyh-review-card { background: #fff; }

.fyh-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -22px rgba(31,27,24,0.28),
              0 4px 10px -4px rgba(31,27,24,0.08);
  border-color: rgba(176,141,87,0.35);
}

.fyh-review-card__quotemark {
  position: absolute;
  top: -8px;
  left: 18px;
  z-index: 0;
  font-family: var(--fyh-font-serif);
  font-style: italic;
  font-size: 5rem;
  line-height: 1;
  color: var(--fyh-accent);
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
}

.fyh-review-card__stars {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--fyh-accent);
}
.fyh-review-card__stars svg { width: 16px; height: 16px; fill: currentColor; }

.fyh-review-card__quote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  font-family: var(--fyh-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--fyh-text);
}
.fyh-review-card__quote p { margin: 0; }
.fyh-review-card__quote p + p { margin-top: 0.5em; }

.fyh-review-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(31,27,24,0.08);
  font-size: 0.82rem;
}
.fyh-review-card__name {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fyh-text);
}
.fyh-review-card__loc {
  color: var(--fyh-text-muted);
  letter-spacing: 0.04em;
}
.fyh-review-card__prod {
  margin-left: auto;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--fyh-accent-deep);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color var(--fyh-dur-md) var(--fyh-ease);
}
.fyh-review-card__prod:hover { color: var(--fyh-text); }

/* Screenshot variant — image fills card */
.fyh-review-card--shot {
  padding: 0;
  overflow: hidden;
  background: var(--fyh-bg-alt);
  aspect-ratio: 4 / 5;
  display: block;
}
.fyh-review-card--shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 800ms cubic-bezier(.22,.61,.36,1);
}
.fyh-review-card--shot:hover img { transform: scale(1.04); }
.fyh-review-card--shot .fyh-review-card__shot-cap {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 2;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  background: rgba(31,27,24,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 4px 9px;
  border-radius: 4px;
}

/* Judge.me block (when enabled) */
.fyh-reviews__judgeme {
  margin-top: 32px;
}

@media (prefers-reduced-motion: reduce) {
  .fyh-review-card,
  .fyh-review-card--shot img { transition: none !important; }
  .fyh-review-card:hover { transform: none; box-shadow: 0 1px 2px rgba(31,27,24,0.04); }
  .fyh-review-card--shot:hover img { transform: none; }
}

/* ---------- FYH Best Sellers (polished) ---------- */

.fyh-bestsellers {
  position: relative;
}

/* Subtle texture so the section reads "premium" without being loud */
.fyh-bestsellers::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(176,141,87,0.06), transparent 70%);
  z-index: 0;
}
.fyh-bestsellers > .fyh-container { position: relative; z-index: 1; }

.fyh-bestsellers__head {
  position: relative;
  margin-bottom: clamp(28px, 4.5vw, 48px);
}

.fyh-bestsellers__title {
  font-family: var(--fyh-font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

.fyh-bestsellers__rule {
  display: block;
  width: 56px;
  height: 1px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--fyh-accent), transparent);
  position: relative;
}
.fyh-bestsellers__rule::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--fyh-accent);
  border-radius: 999px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.fyh-bestsellers__sub {
  margin-top: 14px;
  color: var(--fyh-text-muted);
  font-size: 1rem;
  max-width: 56ch;
  margin-inline: auto;
}

.fyh-bestsellers__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fyh-text-subtle);
}
.fyh-bestsellers__meta svg {
  opacity: 0.7;
}

/* Tighter, premium grid */
.fyh-bestsellers__grid {
  gap: clamp(20px, 2.4vw, 36px) clamp(16px, 1.8vw, 28px);
}
@media (min-width: 1100px) {
  .fyh-bestsellers[data-cols-desktop="3"] .fyh-bestsellers__grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
  .fyh-bestsellers[data-cols-desktop="4"] .fyh-bestsellers__grid {
    grid-template-columns: repeat(4, minmax(0,1fr));
  }
}

/* Refined card lift inside bestsellers */
.fyh-bestsellers .fyh-card {
  transition: transform var(--fyh-dur-base) var(--fyh-ease);
}
.fyh-bestsellers .fyh-card:hover {
  transform: translateY(-4px);
}
.fyh-bestsellers .fyh-card__media {
  border: 1px solid rgba(31,27,24,0.06);
  box-shadow:
    0 1px 2px rgba(31,27,24,0.04),
    0 0 0 0 rgba(176,141,87,0);
  transition: box-shadow var(--fyh-dur-slow) var(--fyh-ease),
              border-color var(--fyh-dur-base) var(--fyh-ease);
}
.fyh-bestsellers .fyh-card:hover .fyh-card__media {
  box-shadow:
    0 22px 44px -28px rgba(31,27,24,0.30),
    0 6px 14px -6px rgba(31,27,24,0.10);
  border-color: rgba(176,141,87,0.30);
}

.fyh-bestsellers .fyh-card__title {
  font-size: 1rem;
  letter-spacing: 0.005em;
}
.fyh-bestsellers .fyh-card__info {
  padding-top: 14px;
  text-align: center;
}
.fyh-bestsellers .fyh-card__price-current {
  font-family: var(--fyh-font-serif);
  font-size: 1.05rem;
  font-weight: 500;
}
@media (min-width: 750px) {
  .fyh-bestsellers .fyh-card__info { text-align: left; }
}

.fyh-bestsellers__cta {
  margin-top: clamp(36px, 5vw, 56px);
  text-align: center;
}
.fyh-bestsellers__cta .fyh-btn {
  padding-inline: 28px;
}

.fyh-bestsellers__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--fyh-text-muted);
  padding: 40px 0;
}

/* ---------- Footer bands (contact + socials) ---------- */

.fyh-footer-bands { padding: 36px 0; }

.fyh-footer-bands__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}
@media (min-width: 990px) {
  .fyh-footer-bands__inner {
    grid-template-columns: 1.4fr auto auto;
    gap: 32px;
  }
}

.fyh-footer-bands__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.fyh-footer-bands__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: rgba(251, 247, 242, 0.92);
}
.fyh-footer-bands__badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.fyh-footer-bands__badge-icon svg { width: 16px; height: 16px; }

.fyh-footer-bands__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.fyh-footer-bands__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--fyh-font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transition: background var(--fyh-dur-base, .25s) ease,
              transform var(--fyh-dur-base, .25s) ease,
              border-color var(--fyh-dur-base, .25s) ease;
}
.fyh-footer-bands__cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.fyh-footer-bands__cta:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}
.fyh-footer-bands__cta--wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.fyh-footer-bands__cta--wa:hover {
  background: linear-gradient(135deg, #2ce072 0%, #149a8b 100%);
}
.fyh-footer-bands__cta--mail { font-weight: 500; }

.fyh-footer-bands__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fyh-footer-bands__social {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  text-decoration: none;
  transition: background var(--fyh-dur-base, .25s) ease,
              transform var(--fyh-dur-base, .25s) ease,
              border-color var(--fyh-dur-base, .25s) ease;
}
.fyh-footer-bands__social svg { width: 17px; height: 17px; }
.fyh-footer-bands__social:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

/* ---------- Floating WhatsApp button ---------- */

.fyh-whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow:
    0 10px 24px -8px rgba(37, 211, 102, 0.5),
    0 4px 8px rgba(0,0,0,0.15);
  transition: transform var(--fyh-dur-base, .25s) ease,
              box-shadow var(--fyh-dur-base, .25s) ease;
  animation: fyh-wa-pulse 2.4s ease-in-out infinite;
}
.fyh-whatsapp-float svg { width: 28px; height: 28px; }
.fyh-whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow:
    0 14px 32px -8px rgba(37, 211, 102, 0.7),
    0 6px 12px rgba(0,0,0,0.2);
}
.fyh-whatsapp-float__bubble {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #1f1b18;
  color: #fff;
  font-family: var(--fyh-font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--fyh-dur-base, .25s) ease,
              transform var(--fyh-dur-base, .25s) ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}
.fyh-whatsapp-float__bubble::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: #1f1b18;
}
.fyh-whatsapp-float:hover .fyh-whatsapp-float__bubble {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@keyframes fyh-wa-pulse {
  0%, 100% { box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.5), 0 4px 8px rgba(0,0,0,0.15), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50%      { box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.5), 0 4px 8px rgba(0,0,0,0.15), 0 0 0 14px rgba(37, 211, 102, 0); }
}

@media (max-width: 749px) {
  .fyh-whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .fyh-whatsapp-float svg { width: 26px; height: 26px; }
  .fyh-whatsapp-float__bubble { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .fyh-whatsapp-float { animation: none; }
}


/* ---------- Header / top navigation polish ---------- */

/* Header surface: warm ivory, subtle bottom rule, refined font smoothing */
header-component.header,
header-component.header .header__row {
  -webkit-font-smoothing: antialiased;
}

header-component.header {
  background: rgba(251, 247, 242, 0.94) !important;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 rgba(232, 223, 210, 0.65), 0 12px 28px -28px rgba(31, 27, 24, 0.18);
  transition: box-shadow 320ms var(--fyh-ease), border-color 320ms var(--fyh-ease);
}

/* When the page has been scrolled, Rebel updates data-scroll-direction.
   We use it as a hook to deepen the shadow + show a subtle gold rule. */
header-component.header[data-scroll-direction="up"],
header-component.header[data-scroll-direction="down"] {
  box-shadow:
    0 1px 0 rgba(232, 223, 210, 1),
    0 18px 38px -28px rgba(31, 27, 24, 0.22);
}

/* Refined breathing inside the header */
header-component.header .header__row--top {
  padding-block: 4px;
}
header-component.header .header__columns {
  align-items: center;
  gap: clamp(16px, 2.4vw, 36px);
}

/* ---- Logo ---- */
header-component.header .header__heading,
header-component.header .header-logo,
header-component.header [data-block-id="header-logo"] a {
  letter-spacing: 0.02em;
}
header-component.header [data-block-id="header-logo"] img,
header-component.header .header-logo img {
  transition: opacity 220ms var(--fyh-ease);
}
header-component.header [data-block-id="header-logo"]:hover img,
header-component.header .header-logo:hover img {
  opacity: 0.85;
}

header-component.header .header-menu {
  position: relative;
  z-index: 0;
}

/* ---- Desktop menu ---- */
/* The actual flex list lives inside <overflow-list>'s shadow DOM, so the gap
   between menu items must be set via ::part(list) to pierce the shadow root.
   The host element shows up as `overflow-list.overflow-menu`. */
header-component.header overflow-list.overflow-menu::part(list) {
  column-gap: clamp(32px, 4vw, 64px) !important;
  padding-inline: 4px;
}

/* Outer wrapper still gets a gap as a safety net for edge cases */
header-component.header .header-menu .menu-list {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.6vw, 56px);
}

/* Do NOT use position: relative here — it becomes the containing block for
   .menu-list__submenu (width:100%), which squeezes mega-menus to one tab width.
   Stacking uses z-index on flex items (valid without position). */
header-component.header .header-menu .menu-list__list-item {
  padding-inline: 6px;
  z-index: 0;
}

header-component.header .header-menu .menu-list__list-item:where(:hover, :focus-within),
header-component.header .header-menu .menu-list__list-item:has([aria-expanded='true']) {
  z-index: 30;
}

/* Theme extends link hit areas with negative inline margins (header.liquid),
   which makes uppercase nav labels overlap. Keep padding, shrink pull-in. */
@media screen and (min-width: 750px) {
  header-component.header .menu-list__list-item:where(:not([slot='overflow'])) > .menu-list__link[aria-haspopup],
  header-component.header .menu-list__list-item:where(:not([slot='overflow'])) > .menu-list__link,
  header-component.header .menu-list__list-item:where(:not([slot='overflow'])) > button.menu-list__link {
    margin-inline: -2px !important;
    padding-inline: clamp(8px, 1vw, 14px) !important;
  }
}

header-component.header .header-menu .menu-list__link,
header-component.header .header-menu .menu-list__link.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 2px !important;
  background: none !important;
  border: 0 !important;
  color: var(--fyh-text) !important;
  text-decoration: none !important;
  transition: color 220ms var(--fyh-ease);
}

header-component.header .header-menu .menu-list__link-title {
  font-family: var(--fyh-font-sans) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  color: inherit !important;
}

/* Animated gold underline (grows from center) */
header-component.header .header-menu .menu-list__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--fyh-accent), var(--fyh-accent-deep, #8c6f42));
  transform: translateX(-50%);
  transition: width 320ms var(--fyh-ease);
}
header-component.header .header-menu .menu-list__link:hover,
header-component.header .header-menu .menu-list__link:focus-visible,
header-component.header .header-menu .menu-list__link--active {
  color: var(--fyh-accent-deep, #8c6f42) !important;
}
header-component.header .header-menu .menu-list__link:hover::after,
header-component.header .header-menu .menu-list__link:focus-visible::after,
header-component.header .header-menu .menu-list__link--active::after {
  width: calc(100% - 8px);
}

/* Caret beside menu items that have a submenu */
header-component.header .header-menu .menu-list__link svg,
header-component.header .header-menu .menu-list__link .icon-caret {
  width: 10px;
  height: 10px;
  transition: transform 220ms var(--fyh-ease);
  opacity: 0.7;
}
header-component.header .header-menu .menu-list__link[aria-expanded="true"] svg,
header-component.header .header-menu .menu-list__link[aria-expanded="true"] .icon-caret {
  transform: rotate(180deg);
  opacity: 1;
}

/* Mega-menu / submenu surface: refined card */
header-component.header .header-menu .menu-list__submenu {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid var(--fyh-border);
  box-shadow: 0 24px 48px -28px rgba(31, 27, 24, 0.22);
  /* Avoid layout/size glitches from header.liquid content-visibility on mega panels */
  content-visibility: visible !important;
  contain-intrinsic-size: unset !important;
}
header-component.header .header-menu .menu-list__submenu-inner {
  padding-block: clamp(20px, 2.4vw, 32px) !important;
}

/* ---- Header actions: search / account / cart ---- */
header-component.header .header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
header-component.header .header-actions .button,
header-component.header .header-actions a,
header-component.header .header-actions button:not(.button):not(.cart-link) {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: transparent !important;
  border: 0 !important;
  color: var(--fyh-text) !important;
  display: inline-grid;
  place-items: center;
  transition:
    background 220ms var(--fyh-ease),
    color 220ms var(--fyh-ease),
    transform 220ms var(--fyh-ease);
}
header-component.header .header-actions .button:hover,
header-component.header .header-actions a:hover,
header-component.header .header-actions button:not(.button):not(.cart-link):hover {
  background: rgba(176, 141, 87, 0.10) !important;
  color: var(--fyh-accent-deep, #8c6f42) !important;
  transform: translateY(-1px);
}
header-component.header .header-actions svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.6;
}

/* Cart count: replace pill with a small gold dot at top-right of the icon */
header-component.header .header-actions .cart-link,
header-component.header .header-actions [data-cart-link] {
  position: relative;
}
header-component.header .header-actions .cart-link__bubble,
header-component.header .header-actions .cart-count,
header-component.header .header-actions [data-cart-count] {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-family: var(--fyh-font-sans);
  font-size: 0.62rem !important;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--fyh-accent), var(--fyh-accent-deep, #8c6f42)) !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px -4px rgba(176, 141, 87, 0.6);
}

/* ---- Localization (currency / language) ---- */
header-component.header .dropdown-localization__button,
header-component.header .localization-selector {
  font-family: var(--fyh-font-sans) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  border: 1px solid var(--fyh-border) !important;
  border-radius: 999px !important;
  padding: 7px 12px !important;
  color: var(--fyh-text) !important;
  background: transparent !important;
  transition:
    border-color 220ms var(--fyh-ease),
    background 220ms var(--fyh-ease),
    color 220ms var(--fyh-ease);
}
header-component.header .dropdown-localization__button:hover,
header-component.header .localization-selector:hover {
  border-color: var(--fyh-accent) !important;
  color: var(--fyh-accent-deep, #8c6f42) !important;
  background: rgba(176, 141, 87, 0.06) !important;
}
header-component.header .icon-flag {
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-size: cover;
  background-position: center;
}

/* ---- Search button (modal trigger) ---- */
header-component.header [data-search-modal-trigger],
header-component.header .search-modal__open-button,
header-component.header .header-search-button {
  font-family: var(--fyh-font-sans) !important;
  letter-spacing: 0.04em;
}

/* ---- Mobile menu / hamburger ---- */
header-component.header .menu-drawer-trigger,
header-component.header [data-menu-drawer-trigger] {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  transition: background 220ms var(--fyh-ease);
}
header-component.header .menu-drawer-trigger:hover,
header-component.header [data-menu-drawer-trigger]:hover {
  background: rgba(176, 141, 87, 0.10);
}
header-component.header .menu-drawer-trigger svg,
header-component.header [data-menu-drawer-trigger] svg {
  width: 20px;
  height: 20px;
}

/* Mobile menu list: bigger taps, refined spacing */
header-component.header .menu-list--mobile .menu-list__link-title {
  font-family: var(--fyh-font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 749px) {
  header-component.header .header__columns { gap: 8px; }
  header-component.header .header-actions svg { width: 22px; height: 22px; }
}


/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
