/** Shopify CDN: Minification failed

Line 218:0 All "@import" rules must come first
Line 399:0 All "@import" rules must come first
Line 670:0 All "@import" rules must come first
Line 883:0 All "@import" rules must come first
Line 1137:0 All "@import" rules must come first
Line 1349:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:fu-category-grid (INDEX:26) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

  :root {
    --fu-sand: #F5EDD8;
    --fu-ivory: #FDFAF3;
    --fu-ocean: #1A4A6B;
    --fu-terra: #C4622D;
    --fu-gold:  #B8943F;
    --fu-ink:   #1C1A16;
  }

  .fu-catgrid-section {
    background-color: var(--fu-ivory);
    padding: 80px 60px 100px;
  }

  .fu-catgrid-header {
    max-width: 1280px;
    margin: 0 auto 56px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .fu-catgrid-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fu-terra);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .fu-catgrid-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--fu-terra);
  }

  .fu-catgrid-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--fu-ink);
    margin: 0;
  }
  .fu-catgrid-title em {
    font-style: italic;
    color: var(--fu-terra);
    font-weight: 300;
  }

  .fu-catgrid-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  /* ── Card ── */
  .fu-cat-card {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    aspect-ratio: 0.77 / 1;
    background: #c0b09a;
    cursor: pointer;
  }

  /* The visual background: either gradient or image */
  .fu-cat-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .fu-cat-card:hover .fu-cat-card-bg {
    transform: scale(1.05);
  }

  /* When using a photo: the img fills the bg */
  .fu-cat-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* When using gradient only: the div itself is colored via inline style */
  .fu-cat-card-bg--gradient {
    /* inline style sets the background gradient */
  }

  /* Gradient overlay for text legibility — always present */
  .fu-cat-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      to top,
      rgba(28,26,22,0.72) 0%,
      rgba(28,26,22,0.15) 50%,
      transparent 100%
    );
    transition: background 0.4s;
  }
  /* Slightly deeper overlay on photo cards for readability */
  .fu-cat-card--has-image .fu-cat-card-overlay {
    background: linear-gradient(
      to top,
      rgba(28,26,22,0.78) 0%,
      rgba(28,26,22,0.2) 45%,
      rgba(28,26,22,0.05) 100%
    );
  }

  /* Tag badge top-left */
  .fu-cat-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background-color: rgba(253,250,243,0.92);
    color: var(--fu-ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    backdrop-filter: blur(4px);
  }

  /* Label bottom-left */
  .fu-cat-label {
    position: absolute;
    bottom: 28px;
    left: 24px;
    z-index: 3;
    color: #fff;
  }
  .fu-cat-label-line1 {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.01em;
  }
  .fu-cat-label-line2 {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
  }

  /* Circular arrow button bottom-right */
  .fu-cat-arrow {
    position: absolute;
    bottom: 24px;
    right: 20px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.7);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
  }
  .fu-cat-card:hover .fu-cat-arrow {
    background: var(--fu-terra);
    border-color: var(--fu-terra);
  }
  .fu-cat-arrow svg { color: #fff; transition: transform 0.3s; }
  .fu-cat-card:hover .fu-cat-arrow svg { transform: translateX(2px); }

  /* ── Responsive ── */
  @media (max-width: 1024px) {
    .fu-catgrid-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .fu-catgrid-section { padding: 60px 20px 80px; }
    .fu-catgrid-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  }
  @media (max-width: 420px) {
    .fu-catgrid-grid { grid-template-columns: 1fr; }
  }
/* END_SECTION:fu-category-grid */

/* START_SECTION:fu-heritage-stores (INDEX:27) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

  :root {
    --fu-sand: #F5EDD8;
    --fu-ivory: #FDFAF3;
    --fu-ocean: #1A4A6B;
    --fu-terra: #C4622D;
    --fu-gold:  #B8943F;
    --fu-ink:   #1C1A16;
  }

  /* ────────────────────────────────────────────────
     Heritage Strip
  ──────────────────────────────────────────────── */
  .fu-heritage {
    padding: 64px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }

  /* Subtle linen-texture overlay */
  .fu-heritage::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg,   transparent, transparent 3px, rgba(255,255,255,0.04) 3px, rgba(255,255,255,0.04) 4px),
      repeating-linear-gradient(90deg,  transparent, transparent 3px, rgba(255,255,255,0.04) 3px, rgba(255,255,255,0.04) 4px);
    pointer-events: none;
  }

  .fu-heritage-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 56px;
    position: relative;
    z-index: 1;
  }

  .fu-heritage-number {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1;
    margin: 0;
  }

  .fu-heritage-unit {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 0.45em;
    display: block;
    letter-spacing: 0.18em;
    margin-top: 4px;
  }

  .fu-heritage-divider {
    width: 1px;
    height: 64px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .fu-heritage-quote {
    max-width: 280px;
    padding: 0 56px;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .fu-heritage-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
  }

  .fu-heritage-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 0.5;
    display: block;
    margin-bottom: 8px;
    opacity: 0.35;
  }

  /* ────────────────────────────────────────────────
     Stores Banner
  ──────────────────────────────────────────────── */
  .fu-stores-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 52px 60px;
    flex-wrap: wrap;
  }

  .fu-stores-left {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .fu-stores-number {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1;
    margin: 0;
  }

  .fu-stores-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .fu-stores-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--fu-ink);
    margin: 0;
    line-height: 1.2;
  }

  .fu-stores-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    margin: 0;
    line-height: 1.5;
  }

  .fu-stores-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 0;
    transition: background 0.25s, color 0.25s;
    flex-shrink: 0;
  }
  .fu-stores-btn:hover svg { transform: translateX(3px); }
  .fu-stores-btn svg { transition: transform 0.25s; }

  /* ── Responsive ── */
  @media (max-width: 900px) {
    .fu-heritage { padding: 48px 30px; gap: 0; }
    .fu-heritage-stat { padding: 20px 24px; }
    .fu-heritage-divider { display: none; }
    .fu-heritage-quote { display: none; }
    .fu-stores-banner { flex-direction: column; align-items: flex-start; padding: 40px 30px; }
    .fu-stores-left { gap: 20px; }
  }
  @media (max-width: 600px) {
    .fu-heritage { flex-direction: column; padding: 48px 20px; }
    .fu-heritage-stat { padding: 16px 0; }
    .fu-stores-banner { padding: 36px 20px; }
  }
/* END_SECTION:fu-heritage-stores */

/* START_SECTION:fu-hero-summer (INDEX:28) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

  :root {
    --fu-sand: #F5EDD8;
    --fu-ivory: #FDFAF3;
    --fu-ocean: #1A4A6B;
    --fu-terra: #C4622D;
    --fu-gold: #B8943F;
    --fu-ink: #1C1A16;
  }

  .fu-hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  /* ── Announce Bar ── */
  .fu-announce-bar {
    width: 100%;
    background-color: var(--fu-ocean);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 10;
  }

  /* ── Hero Area ── */
  .fu-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--fu-bg-start, #EDE3C8) 0%, var(--fu-bg-end, #FDFAF3) 100%);
  }

  /* Dot grid pattern */
  .fu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(28,26,22,0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
  }

  /* Vertical accent lines */
  .fu-hero-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
  }
  .fu-hero-lines span {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(184,148,63,0.25) 30%, rgba(184,148,63,0.25) 70%, transparent);
  }
  .fu-hero-lines span:nth-child(1) { left: 15%; }
  .fu-hero-lines span:nth-child(2) { left: 50%; }
  .fu-hero-lines span:nth-child(3) { right: 15%; }

  /* Animated sun circle */
  .fu-sun-decor {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(184,148,63,0.18) 0%, rgba(196,98,45,0.08) 50%, transparent 70%);
    animation: fu-sun-pulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
  }
  .fu-sun-decor::after {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px solid rgba(184,148,63,0.2);
    animation: fu-sun-rotate 20s linear infinite;
  }
  @keyframes fu-sun-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.75; }
  }
  @keyframes fu-sun-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* Hero content */
  .fu-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 60px 120px;
    width: 100%;
  }

  .fu-hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fu-terra);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .fu-hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--fu-terra);
  }

  .fu-hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.05;
    color: var(--fu-ink);
    margin: 0 0 12px;
    max-width: 760px;
  }
  .fu-hero-headline .fu-line1 {
    display: block;
    font-size: clamp(52px, 7vw, 96px);
    letter-spacing: -0.01em;
  }
  .fu-hero-headline .fu-line2 {
    display: block;
    font-size: clamp(52px, 7vw, 96px);
    letter-spacing: -0.01em;
  }
  .fu-hero-headline .fu-accent {
    display: block;
    font-size: clamp(44px, 5.5vw, 76px);
    font-style: italic;
    font-weight: 300;
    color: var(--fu-terra);
    margin-top: 4px;
  }

  .fu-hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(28,26,22,0.65);
    max-width: 480px;
    margin: 32px 0 48px;
  }

  .fu-hero-ctas {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }

  .fu-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--fu-ink);
    color: var(--fu-ivory);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border: 1px solid var(--fu-ink);
    transition: background 0.3s, color 0.3s, border-color 0.3s;
  }
  .fu-btn-primary:hover {
    background-color: var(--fu-terra);
    border-color: var(--fu-terra);
    color: #fff;
  }

  .fu-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--fu-ink);
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(28,26,22,0.35);
    transition: border-color 0.3s, color 0.3s;
  }
  .fu-btn-secondary:hover {
    color: var(--fu-terra);
    border-color: var(--fu-terra);
  }
  .fu-btn-secondary svg {
    transition: transform 0.3s;
  }
  .fu-btn-secondary:hover svg {
    transform: translateX(4px);
  }

  /* Wave SVG divider */
  .fu-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
  }
  .fu-hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
  }

  /* ── Responsive ── */
  @media (max-width: 900px) {
    .fu-hero-inner {
      padding: 80px 32px 100px;
    }
    .fu-sun-decor {
      width: 280px;
      height: 280px;
      top: -40px;
      right: -40px;
    }
  }
  @media (max-width: 600px) {
    .fu-hero-inner {
      padding: 60px 20px 80px;
    }
    .fu-hero-ctas {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    .fu-hero-lines span:nth-child(1),
    .fu-hero-lines span:nth-child(3) {
      display: none;
    }
    .fu-sun-decor {
      width: 200px;
      height: 200px;
    }
  }
/* END_SECTION:fu-hero-summer */

/* START_SECTION:fu-lookbook-banner (INDEX:29) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

  :root {
    --fu-sand: #F5EDD8;
    --fu-ivory: #FDFAF3;
    --fu-ocean: #1A4A6B;
    --fu-terra: #C4622D;
    --fu-gold: #B8943F;
    --fu-ink: #1C1A16;
  }

  .fu-lookbook-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--fu-lookbook-bg, #1A4A6B);
  }

  /* Background image overlay */
  .fu-lookbook-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .fu-lookbook-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .fu-lookbook-bg-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,74,107,0.72);
  }

  /* Diagonal stripe texture overlay */
  .fu-lookbook-texture {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(255,255,255,0.028) 8px,
      rgba(255,255,255,0.028) 9px
    );
    pointer-events: none;
  }

  /* Large decorative circle outline */
  .fu-lookbook-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(80vw, 560px);
    height: min(80vw, 560px);
    border-radius: 50%;
    border: 1px solid rgba(253,250,243,0.14);
    z-index: 2;
    pointer-events: none;
  }
  .fu-lookbook-circle::before {
    content: '';
    position: absolute;
    inset: 24px;
    border-radius: 50%;
    border: 1px solid rgba(184,148,63,0.22);
  }
  .fu-lookbook-circle::after {
    content: '';
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    border: 1px solid rgba(253,250,243,0.07);
  }

  /* Corner decorative marks */
  .fu-lookbook-corner {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    opacity: 0.35;
  }
  .fu-lookbook-corner--tl { top: 32px; left: 40px; }
  .fu-lookbook-corner--tr { top: 32px; right: 40px; transform: scaleX(-1); }
  .fu-lookbook-corner--bl { bottom: 32px; left: 40px; transform: scaleY(-1); }
  .fu-lookbook-corner--br { bottom: 32px; right: 40px; transform: scale(-1); }

  /* Main content */
  .fu-lookbook-inner {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 720px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .fu-lookbook-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--fu-gold);
    margin: 0 0 28px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .fu-lookbook-eyebrow::before,
  .fu-lookbook-eyebrow::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--fu-gold);
    opacity: 0.7;
  }

  .fu-lookbook-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.08;
    color: #fff;
    margin: 0 0 8px;
  }
  .fu-lookbook-headline .fu-lb-line1 {
    display: block;
    font-size: clamp(42px, 6vw, 80px);
    letter-spacing: -0.01em;
  }
  .fu-lookbook-headline .fu-lb-accent {
    display: block;
    font-size: clamp(38px, 5.5vw, 72px);
    font-style: italic;
    font-weight: 300;
    color: var(--fu-terra);
    margin-top: 6px;
  }

  .fu-lookbook-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(253,250,243,0.7);
    max-width: 460px;
    margin: 28px 0 44px;
  }

  /* Outline button */
  .fu-lookbook-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border: 1px solid rgba(253,250,243,0.5);
    background: transparent;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    position: relative;
    overflow: hidden;
  }
  .fu-lookbook-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--fu-terra);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
  }
  .fu-lookbook-btn:hover {
    border-color: var(--fu-terra);
  }
  .fu-lookbook-btn:hover::before {
    transform: scaleX(1);
  }
  .fu-lookbook-btn svg {
    transition: transform 0.3s;
  }
  .fu-lookbook-btn:hover svg {
    transform: translateX(4px);
  }

  /* ── Responsive ── */
  @media (max-width: 600px) {
    .fu-lookbook-inner {
      padding: 60px 24px;
    }
    .fu-lookbook-corner { display: none; }
  }
/* END_SECTION:fu-lookbook-banner */

/* START_SECTION:fu-new-arrivals (INDEX:30) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

  :root {
    --fu-sand: #F5EDD8;
    --fu-ivory: #FDFAF3;
    --fu-ocean: #1A4A6B;
    --fu-terra: #C4622D;
    --fu-gold:  #B8943F;
    --fu-ink:   #1C1A16;
  }

  .fu-arrivals-section {
    background-color: var(--fu-sand);
    padding: 80px 60px 100px;
  }

  .fu-arrivals-header {
    max-width: 1280px;
    margin: 0 auto 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
  }

  .fu-arrivals-header-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .fu-arrivals-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fu-terra);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .fu-arrivals-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--fu-terra);
  }

  .fu-arrivals-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--fu-ink);
    margin: 0;
  }

  .fu-arrivals-viewall {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fu-ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(28,26,22,0.3);
    white-space: nowrap;
    transition: color 0.3s, border-color 0.3s;
  }
  .fu-arrivals-viewall:hover {
    color: var(--fu-terra);
    border-color: var(--fu-terra);
  }

  .fu-arrivals-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  /* ── Product Card ── */
  .fu-prod-card {
    display: flex;
    flex-direction: column;
    background: var(--fu-ivory);
    position: relative;
    text-decoration: none;
    color: inherit;
  }

  .fu-prod-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #ddd5c5;
  }

  .fu-prod-img-wrap img,
  .fu-prod-img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .fu-prod-card:hover .fu-prod-img-wrap img,
  .fu-prod-card:hover .fu-prod-img-placeholder {
    transform: scale(1.04);
  }

  .fu-prod-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background-color: var(--fu-ink);
    color: var(--fu-ivory);
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
  }
  .fu-prod-badge.fu-badge-sale { background-color: var(--fu-terra); }

  .fu-prod-actions {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .fu-prod-card:hover .fu-prod-actions {
    opacity: 1;
    transform: translateX(0);
  }

  .fu-prod-action-btn {
    width: 40px;
    height: 40px;
    background: rgba(253,250,243,0.92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.25s;
    color: var(--fu-ink);
  }
  .fu-prod-action-btn:hover {
    background: var(--fu-terra);
    color: #fff;
  }
  .fu-prod-action-btn svg { transition: color 0.25s; }
  .fu-prod-action-btn:hover svg { color: #fff; }

  .fu-prod-info {
    padding: 18px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }

  .fu-prod-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--fu-ink);
    margin: 0;
  }

  .fu-prod-variant {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(28,26,22,0.55);
    letter-spacing: 0.04em;
    margin: 0;
  }

  .fu-prod-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
  }

  .fu-prod-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--fu-ink);
  }

  .fu-prod-price-old {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(28,26,22,0.4);
    text-decoration: line-through;
  }

  .fu-prod-swatches {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-top: 6px;
  }

  .fu-prod-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid rgba(28,26,22,0.12);
    display: block;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
  }
  .fu-prod-swatch:hover {
    transform: scale(1.2);
    border-color: rgba(28,26,22,0.4);
  }

  @media (max-width: 1024px) {
    .fu-arrivals-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 760px) {
    .fu-arrivals-section { padding: 60px 20px 80px; }
    .fu-arrivals-header { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 520px) {
    .fu-arrivals-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .fu-prod-name { font-size: 17px; }
  }
/* END_SECTION:fu-new-arrivals */

/* START_SECTION:fu-newsletter-split (INDEX:31) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

  :root {
    --fu-sand: #F5EDD8;
    --fu-ivory: #FDFAF3;
    --fu-ocean: #1A4A6B;
    --fu-terra: #C4622D;
    --fu-gold:  #B8943F;
    --fu-ink:   #1C1A16;
  }

  .fu-newsletter-section {
    padding: 80px 60px 100px;
    position: relative;
    overflow: hidden;
  }

  .fu-newsletter-section::before {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(184,148,63,0.12);
    pointer-events: none;
  }
  .fu-newsletter-section::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(184,148,63,0.08);
    pointer-events: none;
  }

  .fu-newsletter-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  /* ── Left Column ── */
  .fu-nl-left {
    display: flex;
    flex-direction: column;
  }

  .fu-nl-chips {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }

  .fu-nl-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--fu-terra);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 100px;
  }

  .fu-nl-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(28,26,22,0.2);
    color: var(--fu-ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.06em;
    padding: 5px 14px;
    border-radius: 100px;
  }
  .fu-nl-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--fu-gold);
    display: inline-block;
    flex-shrink: 0;
  }

  .fu-nl-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--fu-ink);
    margin: 0 0 20px;
  }
  .fu-nl-headline .fu-nl-line1 { display: block; }
  .fu-nl-headline .fu-nl-line2 {
    display: block;
    font-style: italic;
    color: var(--fu-terra);
  }

  .fu-nl-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(28,26,22,0.65);
    max-width: 420px;
    margin: 0;
  }

  .fu-nl-divider {
    width: 48px;
    height: 1px;
    background: linear-gradient(to right, var(--fu-gold), transparent);
    margin: 28px 0 0;
  }

  /* ── Right Column ── */
  .fu-nl-right {
    display: flex;
    flex-direction: column;
  }

  /* ── Override Avone newsletter form styles ── */
  .fu-newsletter-section .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .fu-newsletter-section .newsletter__input {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    border-radius: 0 !important;
    padding: 14px 18px !important;
    width: 100% !important;
    outline: none !important;
    transition: border-color 0.3s !important;
  }

  .fu-newsletter-section .newsletter__submit {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    padding: 16px 24px !important;
    width: 100% !important;
    cursor: pointer !important;
    margin-top: 12px !important;
    transition: opacity 0.25s !important;
    border-radius: 0 !important;
  }

  .fu-newsletter-section .newsletter__submit:hover {
    opacity: 0.9;
  }

  .fu-nl-privacy {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: rgba(28,26,22,0.4);
    line-height: 1.6;
    margin: 16px 0 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  .fu-nl-privacy::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 1L2 3v4c0 2.76 2.14 5.33 5 5.95C9.86 12.33 12 9.76 12 7V3L7 1z' stroke='%231C1A16' stroke-opacity='0.35' stroke-width='0.9' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  }

  /* ── Responsive ── */
  @media (max-width: 900px) {
    .fu-newsletter-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .fu-nl-body { max-width: 100%; }
  }
  @media (max-width: 600px) {
    .fu-newsletter-section { padding: 60px 20px 80px; }
  }
/* END_SECTION:fu-newsletter-split */

/* START_SECTION:fu-promo-ticker (INDEX:32) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

  :root {
    --fu-terra: #C4622D;
    --fu-ivory: #FDFAF3;
  }

  .fu-ticker-section {
    overflow: hidden;
    position: relative;
  }

  .fu-ticker-track {
    display: flex;
    width: max-content;
  }

  /* Two identical runs side by side for seamless loop */
  .fu-ticker-run {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    animation: fu-ticker-scroll linear infinite;
    animation-duration: var(--fu-ticker-speed, 28s);
  }

  @keyframes fu-ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
  }

  /* Pause on hover */
  .fu-ticker-section:hover .fu-ticker-run {
    animation-play-state: paused;
  }

  .fu-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.08em;
    padding: 0 32px;
  }

  /* Dot separator */
  .fu-ticker-item::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin-left: 32px;
    flex-shrink: 0;
    opacity: 0.5;
  }
  .fu-ticker-item:last-child::after { display: none; }
/* END_SECTION:fu-promo-ticker */