/* ══════════════════════════════════════════════════════════
   ARMONELLE — Main Stylesheet
   Mockuptan birebir alınmış design system
   ══════════════════════════════════════════════════════════ */

:root {
  --travertine:    #F4F1EE;
  --travertine-dk: #EAE5DF;
  --cream:         #F8F6F3;
  --cream-dk:      #EDE8E1;
  --stone:         #C9C0B5;
  --stone-dk:      #A89D92;
  --olive:         #5C6B5A;
  --olive-lt:      #7A8C77;
  --olive-dk:      #3E4C3C;
  --charcoal:      #2C2C29;
  --charcoal-lt:   #4A4A45;
  --charcoal-xs:   #7A7A74;
  --gold:          #B09268;
  --gold-lt:       #C9AD89;
  --gold-xs:       #E2D0B8;
  --white:         #FDFCFB;
  --ink:           #1A1A17;
  --serif:         'Cormorant', serif;
  --serif-alt:     'Cormorant Garamond', serif;
  --sans:          'Montserrat', sans-serif;
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--travertine); color: var(--charcoal); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Grain texture */
body::after { content:''; position:fixed; inset:0; pointer-events:none; z-index:9999; opacity:0.025;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size:200px; }

/* ── UTILITIES ───────────────────────────────────────────── */
.eyebrow { font-family:var(--sans); font-size:9px; font-weight:400; letter-spacing:0.35em; text-transform:uppercase; color:var(--gold); }
.eyebrow--light { color:rgba(244,241,238,0.5); }
.section-label { display:flex; align-items:center; gap:20px; margin-bottom:28px; }
.section-label::before { content:''; display:block; width:32px; height:1px; background:var(--gold); flex-shrink:0; }
.section-label--light::before { background:rgba(176,146,104,0.5); }
.container { max-width:1200px; margin:0 auto; padding:0 72px; }
@media(max-width:768px) { .container { padding:0 24px; } }

/* ── NAVIGATION ──────────────────────────────────────────── */
.armonelle-nav { position:fixed; top:0; left:0; right:0; z-index:200; display:flex; align-items:center; justify-content:space-between; padding:0 52px; height:76px; transition:background 0.5s var(--ease), border-color 0.5s; border-bottom:1px solid transparent; }
.armonelle-nav.scrolled { background:rgba(244,241,238,0.92); backdrop-filter:blur(20px) saturate(180%); border-color:rgba(176,146,104,0.15); }
.armonelle-nav__logo { font-family:var(--serif); font-size:22px; font-weight:400; letter-spacing:0.22em; text-transform:uppercase; color:var(--charcoal); }
.armonelle-nav__logo sup { font-family:var(--sans); font-size:7px; color:var(--gold); font-weight:300; letter-spacing:0.15em; }
.armonelle-nav__links { display:flex; align-items:center; gap:44px; list-style:none; }
.armonelle-nav__links a { font-size:9px; font-weight:400; letter-spacing:0.22em; text-transform:uppercase; color:var(--charcoal-lt); position:relative; transition:color 0.3s; }
.armonelle-nav__links a::after { content:''; position:absolute; bottom:-3px; left:0; width:0; height:1px; background:var(--gold); transition:width 0.4s var(--ease); }
.armonelle-nav__links a:hover { color:var(--charcoal); }
.armonelle-nav__links a:hover::after { width:100%; }
.armonelle-nav__actions { display:flex; align-items:center; gap:24px; }
.armonelle-nav__cart { position:relative; color:var(--charcoal-lt); transition:color 0.3s; }
.armonelle-nav__cart:hover { color:var(--charcoal); }
.armonelle-nav__cart svg { width:20px; height:20px; }
.armonelle-nav__cart-count { position:absolute; top:-6px; right:-8px; width:16px; height:16px; border-radius:50%; background:var(--olive); color:var(--white); font-size:8px; font-weight:400; display:flex; align-items:center; justify-content:center; }
.armonelle-nav__cta { font-size:9px; font-weight:400; letter-spacing:0.28em; text-transform:uppercase; color:var(--white); background:var(--olive); padding:12px 28px; transition:background 0.35s, transform 0.35s; }
.armonelle-nav__cta:hover { background:var(--charcoal); transform:translateY(-1px); }
.armonelle-nav__hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; }
.armonelle-nav__hamburger span { display:block; width:22px; height:1.5px; background:var(--charcoal); transition:all 0.3s var(--ease); transform-origin:center; }
.armonelle-nav__hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.armonelle-nav__hamburger.open span:nth-child(2) { opacity:0; }
.armonelle-nav__hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }
.armonelle-mobile-menu { display:none; position:fixed; inset:0; background:rgba(244,241,238,0.98); backdrop-filter:blur(20px); z-index:250; flex-direction:column; align-items:center; justify-content:center; gap:40px; }
.armonelle-mobile-menu.open { display:flex; }
.armonelle-mobile-menu a { font-family:var(--serif); font-size:36px; font-weight:300; color:var(--charcoal); letter-spacing:0.1em; transition:color 0.3s; }
.armonelle-mobile-menu a:hover { color:var(--olive); }
.armonelle-mobile-menu .cta { font-family:var(--sans); font-size:10px; font-weight:400; letter-spacing:0.28em; text-transform:uppercase; color:var(--white); background:var(--olive); padding:16px 40px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary { display:inline-flex; align-items:center; gap:14px; font-family:var(--sans); font-size:9px; font-weight:400; letter-spacing:0.3em; text-transform:uppercase; color:var(--white); background:var(--olive); padding:17px 40px; transition:all 0.4s var(--ease); position:relative; overflow:hidden; border:none; cursor:pointer; }
.btn-primary::before { content:''; position:absolute; inset:0; background:var(--olive-dk); transform:translateX(-101%); transition:transform 0.4s var(--ease); }
.btn-primary span, .btn-primary > * { position:relative; z-index:1; }
.btn-primary:hover::before { transform:translateX(0); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 16px 40px rgba(62,76,60,0.25); color:var(--white); }
.btn-ghost { font-family:var(--sans); font-size:9px; font-weight:400; letter-spacing:0.25em; text-transform:uppercase; color:var(--charcoal-lt); display:inline-flex; align-items:center; gap:10px; transition:color 0.3s, gap 0.3s; background:none; border:none; cursor:pointer; }
.btn-ghost::after { content:'→'; font-size:12px; transition:transform 0.3s; }
.btn-ghost:hover { color:var(--olive); gap:14px; }
.btn-ghost:hover::after { transform:translateX(2px); }
.btn-gold { display:inline-flex; align-items:center; justify-content:center; gap:12px; font-family:var(--sans); font-size:9px; font-weight:400; letter-spacing:0.3em; text-transform:uppercase; color:var(--ink); background:var(--gold); padding:17px 40px; transition:all 0.4s var(--ease); border:none; cursor:pointer; }
.btn-gold:hover { background:var(--gold-lt); transform:translateY(-2px); }

/* ── FOOTER ──────────────────────────────────────────────── */
.armonelle-footer { background:var(--charcoal); padding:96px 72px 44px; }
.armonelle-footer__grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr; gap:60px; padding-bottom:64px; border-bottom:1px solid rgba(244,241,238,0.06); margin-bottom:44px; }
.armonelle-footer__logo { font-family:var(--serif); font-size:26px; font-weight:400; letter-spacing:0.18em; text-transform:uppercase; color:rgba(244,241,238,0.88); margin-bottom:6px; }
.armonelle-footer__tagline { font-size:9px; font-weight:300; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:24px; }
.armonelle-footer__body { font-size:12px; font-weight:300; line-height:1.85; color:rgba(244,241,238,0.28); max-width:260px; margin-bottom:36px; letter-spacing:0.02em; }
.armonelle-footer__social { display:flex; gap:12px; }
.armonelle-footer__social a { width:36px; height:36px; border:1px solid rgba(244,241,238,0.1); display:flex; align-items:center; justify-content:center; font-size:10px; font-family:var(--sans); color:rgba(244,241,238,0.4); transition:border-color 0.3s, color 0.3s; }
.armonelle-footer__social a:hover { border-color:var(--gold); color:var(--gold); }
.armonelle-footer__col-title { font-size:8.5px; font-weight:400; letter-spacing:0.32em; text-transform:uppercase; color:var(--gold-lt); margin-bottom:28px; }
.armonelle-footer__links { list-style:none; display:flex; flex-direction:column; gap:14px; }
.armonelle-footer__links a { font-size:12px; font-weight:300; color:rgba(244,241,238,0.35); letter-spacing:0.03em; transition:color 0.3s; }
.armonelle-footer__links a:hover { color:rgba(244,241,238,0.8); }
.armonelle-footer__bottom { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; }
.armonelle-footer__copy { font-size:10px; font-weight:300; color:rgba(244,241,238,0.18); letter-spacing:0.08em; }
.armonelle-footer__origin { font-size:10px; font-weight:300; color:rgba(244,241,238,0.18); margin-top:6px; }
.armonelle-footer__legal { display:flex; gap:32px; }
.armonelle-footer__legal a { font-size:10px; font-weight:300; color:rgba(244,241,238,0.22); letter-spacing:0.1em; text-transform:uppercase; transition:color 0.3s; }
.armonelle-footer__legal a:hover { color:rgba(244,241,238,0.55); }

/* ── PAGE WRAPPER ────────────────────────────────────────── */
.armonelle-page { padding-top:76px; min-height:100vh; }

/* ── TICKER ──────────────────────────────────────────────── */
.armonelle-ticker { height:48px; background:var(--olive-dk); display:flex; align-items:center; overflow:hidden; }
.armonelle-ticker__track { display:flex; animation:armonelleTicker 28s linear infinite; white-space:nowrap; }
.armonelle-ticker__item { display:inline-flex; align-items:center; padding:0 48px; font-size:8.5px; font-weight:400; letter-spacing:0.3em; text-transform:uppercase; color:rgba(244,241,238,0.65); flex-shrink:0; }
.armonelle-ticker__dot { display:inline-block; width:3px; height:3px; border-radius:50%; background:var(--gold-lt); margin:0 4px; }

/* ── SECTION STYLES ──────────────────────────────────────── */
.armonelle-section { padding:160px 72px; }
.armonelle-section--cream { background:var(--cream); }
.armonelle-section--dark { background:var(--ink); }
.armonelle-section--olive { background:var(--olive-dk); }
.armonelle-section--travertine { background:var(--travertine); }
.armonelle-section-eyebrow { font-family:var(--sans); font-size:9px; font-weight:400; letter-spacing:0.35em; text-transform:uppercase; color:var(--gold); display:flex; align-items:center; gap:20px; margin-bottom:24px; }
.armonelle-section-eyebrow::before { content:''; display:block; width:32px; height:1px; background:var(--gold); flex-shrink:0; }
.armonelle-section-eyebrow--light { color:rgba(176,146,104,0.7); }
.armonelle-section-eyebrow--light::before { background:rgba(176,146,104,0.5); }
.armonelle-section-title { font-family:var(--serif); font-size:clamp(40px,5vw,68px); font-weight:300; line-height:1.04; color:var(--charcoal); margin-bottom:24px; }
.armonelle-section-title em { font-style:italic; color:var(--olive-lt); }
.armonelle-section-title--light { color:rgba(244,241,238,0.92); }
.armonelle-section-title--light em { color:var(--gold-lt); }
.armonelle-section-body { font-size:13px; font-weight:300; line-height:1.85; color:var(--charcoal-xs); letter-spacing:0.02em; }
.armonelle-section-body--light { color:rgba(244,241,238,0.45); }
.armonelle-gold-line::before { content:''; display:block; height:1px; background:linear-gradient(to right,transparent,var(--gold-xs),transparent); margin-bottom:0; }

/* ── HERO ────────────────────────────────────────────────── */
.armonelle-hero { height:100vh; min-height:760px; display:grid; grid-template-columns:1fr 1fr; overflow:hidden; margin-top:-76px; }
.armonelle-hero__left { display:flex; flex-direction:column; justify-content:flex-end; padding:0 72px 100px; position:relative; background:linear-gradient(135deg,#EDE7DC 0%,#E4DDD3 40%,#D8CFC4 100%); }
.armonelle-hero__right { position:relative; overflow:hidden; background:linear-gradient(160deg,#C8BDB0 0%,#B8ADA0 30%,#A8A098 60%,#9A9490 100%); }
.armonelle-hero__tagline { font-size:8.5px; font-weight:400; letter-spacing:0.42em; text-transform:uppercase; color:var(--gold); margin-bottom:36px; display:flex; align-items:center; gap:18px; opacity:0; animation:fadeUp 1s 0.2s var(--ease) forwards; }
.armonelle-hero__tagline::before { content:''; width:44px; height:1px; background:var(--gold); flex-shrink:0; }
.armonelle-hero__headline { font-family:var(--serif); font-size:clamp(48px,6.5vw,86px); font-weight:300; line-height:1.02; color:var(--ink); margin-bottom:36px; opacity:0; animation:fadeUp 1.1s 0.4s var(--ease) forwards; }
.armonelle-hero__headline em { font-style:italic; color:var(--olive); }
.armonelle-hero__body { font-size:12.5px; font-weight:300; line-height:1.9; color:var(--charcoal-xs); max-width:380px; margin-bottom:52px; letter-spacing:0.02em; opacity:0; animation:fadeUp 1.1s 0.6s var(--ease) forwards; }
.armonelle-hero__ctas { display:flex; align-items:center; gap:32px; opacity:0; animation:fadeUp 1.1s 0.8s var(--ease) forwards; }
.armonelle-hero__badge { position:absolute; top:44px; right:44px; z-index:10; width:100px; height:100px; border:1px solid rgba(176,146,104,0.4); border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; background:rgba(244,241,238,0.08); animation:rotateSlow 18s linear infinite; }
.armonelle-hero__badge-text { font-size:6.5px; letter-spacing:0.12em; text-transform:uppercase; color:var(--charcoal-lt); text-align:center; line-height:1.6; font-family:var(--sans); }
.armonelle-hero__center { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; flex-direction:column; }

/* ── RITUAL SECTION ──────────────────────────────────────── */
.armonelle-ritual__steps { display:grid; grid-template-columns:repeat(3,1fr); }
.armonelle-ritual__step { padding:0 52px; }
.armonelle-ritual__step:nth-child(2) { border-left:1px solid var(--travertine-dk); border-right:1px solid var(--travertine-dk); }
.armonelle-ritual__icon { width:104px; height:104px; border-radius:50%; background:var(--travertine); border:1px solid var(--gold-xs); display:flex; align-items:center; justify-content:center; margin-bottom:40px; position:relative; font-size:36px; transition:transform 0.5s var(--ease), box-shadow 0.5s; }
.armonelle-ritual__icon:hover { transform:translateY(-6px); box-shadow:0 20px 50px rgba(92,107,90,0.12); }
.armonelle-ritual__num { position:absolute; top:-10px; right:-10px; width:26px; height:26px; border-radius:50%; background:var(--olive); display:flex; align-items:center; justify-content:center; font-size:9px; color:var(--white); font-family:var(--sans); font-weight:400; }
.armonelle-ritual__step-eyebrow { font-size:8px; font-weight:400; letter-spacing:0.35em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; font-family:var(--sans); }
.armonelle-ritual__step-title { font-family:var(--serif); font-size:38px; font-weight:400; color:var(--charcoal); margin-bottom:16px; line-height:1; }
.armonelle-ritual__step-body { font-size:12.5px; font-weight:300; line-height:1.85; color:var(--charcoal-xs); letter-spacing:0.02em; }

/* ── PRODUCTS GRID ───────────────────────────────────────── */
.armonelle-products__header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:80px; }
.armonelle-products__grid { display:grid; grid-template-columns:1.15fr 0.85fr; gap:20px; }
.armonelle-product-card { background:var(--cream-dk); overflow:hidden; transition:box-shadow 0.5s var(--ease); cursor:pointer; }
.armonelle-product-card:hover { box-shadow:0 30px 80px rgba(44,44,41,0.12); }
.armonelle-product-card--hero { grid-row:span 2; }
.armonelle-product-card__visual { position:relative; overflow:hidden; background:linear-gradient(145deg,#C8BFAE,#9A9088); display:flex; align-items:center; justify-content:center; }
.armonelle-product-card--hero .armonelle-product-card__visual { height:640px; }
.armonelle-product-card--sm .armonelle-product-card__visual { height:290px; }
.armonelle-product-card__visual img { width:100%; height:100%; object-fit:cover; transition:transform 0.7s var(--ease); }
.armonelle-product-card:hover .armonelle-product-card__visual img { transform:scale(1.04); }
.armonelle-product-card__tag { position:absolute; top:24px; left:24px; background:rgba(244,241,238,0.92); backdrop-filter:blur(8px); padding:7px 14px; font-size:7.5px; font-weight:400; letter-spacing:0.3em; text-transform:uppercase; color:var(--olive); border:1px solid rgba(176,146,104,0.2); }
.armonelle-product-card__info { padding:24px 28px 28px; background:var(--white); border-top:1px solid var(--travertine-dk); }
.armonelle-product-card__cat { font-size:8px; font-weight:400; letter-spacing:0.3em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; font-family:var(--sans); }
.armonelle-product-card__name { font-family:var(--serif); font-size:22px; font-weight:400; color:var(--charcoal); margin-bottom:6px; line-height:1.2; }
.armonelle-product-card--hero .armonelle-product-card__name { font-size:26px; }
.armonelle-product-card__desc { font-size:12px; font-weight:300; line-height:1.75; color:var(--charcoal-xs); margin-bottom:18px; }
.armonelle-product-card__footer { display:flex; align-items:center; justify-content:space-between; }
.armonelle-product-card__price { font-family:var(--serif); font-size:24px; font-weight:400; color:var(--charcoal); }
.armonelle-product-card__link { font-size:9px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; color:var(--charcoal-lt); display:flex; align-items:center; gap:8px; transition:color 0.3s, gap 0.3s; font-family:var(--sans); }
.armonelle-product-card__link::after { content:'→'; }
.armonelle-product-card__link:hover { color:var(--olive); gap:12px; }

/* ── ORIGIN SECTION ──────────────────────────────────────── */
.armonelle-origin { background:var(--ink); display:grid; grid-template-columns:1fr 1fr; min-height:700px; }
.armonelle-origin__visual { position:relative; overflow:hidden; background:linear-gradient(160deg,#2E2C27 0%,#1E1C18 100%); display:flex; align-items:center; justify-content:center; }
.armonelle-origin__glow { position:absolute; width:300px; height:300px; border-radius:50%; background:radial-gradient(circle,rgba(176,146,104,0.15) 0%,transparent 70%); }
.armonelle-origin__stats { position:absolute; bottom:60px; left:52px; right:52px; border-top:1px solid rgba(176,146,104,0.2); padding-top:36px; display:flex; }
.armonelle-origin__stat { flex:1; }
.armonelle-origin__stat:first-child { padding-right:32px; }
.armonelle-origin__stat:last-child { padding-left:32px; border-left:1px solid rgba(176,146,104,0.15); }
.armonelle-origin__stat-num { font-family:var(--serif); font-size:48px; font-weight:300; color:var(--gold-lt); line-height:1; margin-bottom:6px; }
.armonelle-origin__stat-lbl { font-size:8px; font-weight:400; letter-spacing:0.28em; text-transform:uppercase; color:rgba(244,241,238,0.3); font-family:var(--sans); }
.armonelle-origin__content { padding:100px 80px; display:flex; flex-direction:column; justify-content:center; position:relative; border-left:1px solid rgba(176,146,104,0.1); }
.armonelle-origin__loc { display:flex; align-items:center; gap:18px; margin-bottom:16px; }
.armonelle-origin__dot { position:relative; width:10px; height:10px; flex-shrink:0; }
.armonelle-origin__dot::before { content:''; position:absolute; inset:2px; border-radius:50%; background:var(--gold); }
.armonelle-origin__dot::after { content:''; position:absolute; inset:0; border-radius:50%; border:1px solid rgba(176,146,104,0.4); animation:pulse 2.5s ease-in-out infinite; }
.armonelle-origin__dot--green::before { background:var(--olive-lt); }
.armonelle-origin__dot--green::after { border-color:rgba(122,140,119,0.4); }
.armonelle-origin__loc-text { font-size:12px; font-weight:300; color:rgba(244,241,238,0.5); letter-spacing:0.04em; font-family:var(--sans); }
.armonelle-origin__loc-text strong { font-weight:400; color:rgba(244,241,238,0.82); }
.armonelle-origin__cert { display:inline-flex; align-items:center; gap:18px; padding:18px 28px; border:1px solid rgba(176,146,104,0.2); background:rgba(176,146,104,0.06); margin-top:44px; }
.armonelle-origin__cert-text { font-size:9px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; color:rgba(244,241,238,0.5); line-height:1.7; font-family:var(--sans); }
.armonelle-origin__cert-text strong { display:block; color:var(--gold-lt); letter-spacing:0.3em; }

/* ── REVIEWS ─────────────────────────────────────────────── */
.armonelle-reviews__header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:72px; }
.armonelle-reviews__meta { text-align:right; }
.armonelle-reviews__rating { font-family:var(--serif); font-size:42px; font-weight:300; color:var(--charcoal); line-height:1; margin-bottom:4px; }
.armonelle-reviews__stars { color:var(--gold); font-size:12px; letter-spacing:2px; margin-bottom:4px; }
.armonelle-reviews__count { font-size:9px; font-weight:300; letter-spacing:0.15em; color:var(--charcoal-xs); font-family:var(--sans); }
.armonelle-reviews__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.armonelle-review-card { background:var(--white); padding:48px 44px; position:relative; transition:background 0.4s; }
.armonelle-review-card:hover { background:var(--travertine); }
.armonelle-review-card__verified { position:absolute; top:28px; right:28px; font-size:7px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; color:var(--olive-lt); font-family:var(--sans); }
.armonelle-review-card__verified::before { content:'✓ '; }
.armonelle-review-card__quote { font-family:var(--serif); font-size:64px; line-height:0.6; color:var(--gold-xs); margin-bottom:20px; }
.armonelle-review-card__stars { color:var(--gold); font-size:10px; letter-spacing:2px; margin-bottom:24px; }
.armonelle-review-card__text { font-family:var(--serif-alt); font-size:17px; font-style:italic; font-weight:300; line-height:1.65; color:var(--charcoal); margin-bottom:32px; }
.armonelle-review-card__author { font-size:8.5px; font-weight:400; letter-spacing:0.28em; text-transform:uppercase; color:var(--charcoal-xs); font-family:var(--sans); }
.armonelle-review-card__location { font-size:8px; font-weight:300; letter-spacing:0.15em; color:var(--stone-dk); margin-top:4px; font-family:var(--sans); }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.armonelle-newsletter { padding:120px 72px; background:var(--olive-dk); display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; position:relative; overflow:hidden; }
.armonelle-newsletter::before { content:'ARMONELLE'; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-family:var(--serif); font-size:200px; font-weight:300; color:rgba(255,255,255,0.03); white-space:nowrap; pointer-events:none; }
.armonelle-newsletter__form { display:flex; }
.armonelle-newsletter__input { flex:1; padding:18px 24px; background:rgba(244,241,238,0.07); border:1px solid rgba(244,241,238,0.12); border-right:none; color:rgba(244,241,238,0.85); font-family:var(--sans); font-size:12px; font-weight:300; letter-spacing:0.04em; outline:none; transition:background 0.3s, border-color 0.3s; }
.armonelle-newsletter__input::placeholder { color:rgba(244,241,238,0.25); }
.armonelle-newsletter__input:focus { background:rgba(244,241,238,0.1); border-color:rgba(176,146,104,0.35); }
.armonelle-newsletter__submit { padding:18px 32px; background:var(--gold); border:1px solid var(--gold); color:var(--ink); font-family:var(--sans); font-size:9px; font-weight:400; letter-spacing:0.28em; text-transform:uppercase; cursor:pointer; transition:background 0.35s; }
.armonelle-newsletter__submit:hover { background:var(--gold-lt); }
.armonelle-newsletter__consent { font-size:9.5px; font-weight:300; color:rgba(244,241,238,0.25); letter-spacing:0.03em; line-height:1.7; margin-top:14px; font-family:var(--sans); }

/* ── SHOP PAGE ───────────────────────────────────────────── */
.armonelle-shop__hero { padding:120px 72px 80px; background:var(--travertine); text-align:center; }
.armonelle-shop__filters { display:flex; align-items:center; justify-content:space-between; padding:0 72px 48px; gap:24px; flex-wrap:wrap; }
.armonelle-shop__filter-btn { font-size:9px; font-weight:400; letter-spacing:0.25em; text-transform:uppercase; color:var(--charcoal-lt); padding:10px 24px; border:1px solid var(--stone); background:transparent; cursor:pointer; transition:all 0.3s; font-family:var(--sans); }
.armonelle-shop__filter-btn.active, .armonelle-shop__filter-btn:hover { background:var(--olive); color:var(--white); border-color:var(--olive); }
.armonelle-shop__grid { padding:0 72px 160px; display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.armonelle-shop-card { background:var(--cream-dk); overflow:hidden; transition:box-shadow 0.5s var(--ease); }
.armonelle-shop-card:hover { box-shadow:0 20px 60px rgba(44,44,41,0.1); }
.armonelle-shop-card__visual { position:relative; height:360px; overflow:hidden; background:linear-gradient(145deg,#C8BFAE,#9A9088); display:flex; align-items:center; justify-content:center; }
.armonelle-shop-card__visual img { width:100%; height:100%; object-fit:cover; transition:transform 0.7s var(--ease); }
.armonelle-shop-card:hover .armonelle-shop-card__visual img { transform:scale(1.04); }
.armonelle-shop-card__tag { position:absolute; top:20px; left:20px; background:rgba(244,241,238,0.9); padding:6px 12px; font-size:7.5px; font-weight:400; letter-spacing:0.3em; text-transform:uppercase; color:var(--olive); font-family:var(--sans); }
.armonelle-shop-card__info { padding:24px 28px 28px; background:var(--white); }
.armonelle-shop-card__cat { font-size:8px; font-weight:400; letter-spacing:0.3em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; font-family:var(--sans); }
.armonelle-shop-card__name { font-family:var(--serif); font-size:20px; font-weight:400; color:var(--charcoal); margin-bottom:8px; }
.armonelle-shop-card__price { font-family:var(--serif); font-size:22px; font-weight:400; color:var(--charcoal); }
.armonelle-shop-card__actions { display:flex; align-items:center; justify-content:space-between; margin-top:16px; }

/* ── PRODUCT SINGLE ──────────────────────────────────────── */
.armonelle-product { display:grid; grid-template-columns:1fr 1fr; min-height:100vh; }
.armonelle-product__gallery { position:sticky; top:76px; height:calc(100vh - 76px); background:linear-gradient(145deg,#C8BFAE,#9A9088); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.armonelle-product__gallery img { width:100%; height:100%; object-fit:cover; }
.armonelle-product__info { padding:80px 72px; }
.armonelle-product__breadcrumb { font-size:9px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; color:var(--charcoal-xs); margin-bottom:40px; display:flex; align-items:center; gap:12px; font-family:var(--sans); }
.armonelle-product__breadcrumb a { color:var(--charcoal-xs); transition:color 0.3s; }
.armonelle-product__breadcrumb a:hover { color:var(--charcoal); }
.armonelle-product__breadcrumb::before { content:''; width:32px; height:1px; background:var(--stone); }
.armonelle-product__name { font-family:var(--serif); font-size:clamp(36px,4vw,54px); font-weight:300; line-height:1.06; color:var(--charcoal); margin-bottom:16px; }
.armonelle-product__price { font-family:var(--serif); font-size:36px; font-weight:400; color:var(--charcoal); margin-bottom:32px; }
.armonelle-product__desc { font-size:13px; font-weight:300; line-height:1.9; color:var(--charcoal-xs); margin-bottom:48px; letter-spacing:0.02em; }
.armonelle-product__add-to-cart { width:100%; padding:20px; background:var(--olive); color:var(--white); font-family:var(--sans); font-size:9px; font-weight:400; letter-spacing:0.35em; text-transform:uppercase; border:none; cursor:pointer; transition:all 0.4s var(--ease); margin-bottom:16px; }
.armonelle-product__add-to-cart:hover { background:var(--olive-dk); transform:translateY(-2px); box-shadow:0 16px 40px rgba(62,76,60,0.25); }
.armonelle-product__includes { margin-top:48px; padding-top:48px; border-top:1px solid var(--travertine-dk); }
.armonelle-product__includes-title { font-size:9px; font-weight:400; letter-spacing:0.3em; text-transform:uppercase; color:var(--gold); margin-bottom:24px; font-family:var(--sans); }
.armonelle-product__includes-list { list-style:none; display:flex; flex-direction:column; gap:12px; }
.armonelle-product__includes-list li { font-size:12.5px; font-weight:300; color:var(--charcoal-xs); padding-left:20px; position:relative; }
.armonelle-product__includes-list li::before { content:'—'; position:absolute; left:0; color:var(--gold); }

/* ── CART PAGE ───────────────────────────────────────────── */
.armonelle-cart { padding:120px 72px; display:grid; grid-template-columns:1fr 380px; gap:80px; align-items:start; }
.armonelle-cart__title { font-family:var(--serif); font-size:clamp(40px,4vw,60px); font-weight:300; color:var(--charcoal); margin-bottom:60px; }
.armonelle-cart__title em { font-style:italic; color:var(--olive); }
.armonelle-cart__empty { text-align:center; padding:80px 0; }
.armonelle-cart__empty-title { font-family:var(--serif); font-size:36px; font-weight:300; color:var(--charcoal); margin-bottom:16px; }
.armonelle-cart__empty-body { font-size:13px; font-weight:300; color:var(--charcoal-xs); margin-bottom:40px; }
.armonelle-cart-item { display:grid; grid-template-columns:120px 1fr auto; gap:28px; align-items:center; padding:28px 0; border-bottom:1px solid var(--travertine-dk); }
.armonelle-cart-item__img { width:120px; height:120px; background:linear-gradient(145deg,#C8BFAE,#9A9088); overflow:hidden; }
.armonelle-cart-item__img img { width:100%; height:100%; object-fit:cover; }
.armonelle-cart-item__name { font-family:var(--serif); font-size:20px; font-weight:400; color:var(--charcoal); margin-bottom:8px; }
.armonelle-cart-item__cat { font-size:8px; font-weight:400; letter-spacing:0.3em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; font-family:var(--sans); }
.armonelle-cart-item__qty { display:flex; align-items:center; gap:16px; }
.armonelle-cart-item__qty button { width:32px; height:32px; border:1px solid var(--stone); background:transparent; font-size:16px; color:var(--charcoal); cursor:pointer; transition:all 0.3s; display:flex; align-items:center; justify-content:center; }
.armonelle-cart-item__qty button:hover { border-color:var(--olive); color:var(--olive); }
.armonelle-cart-item__qty-num { font-family:var(--serif); font-size:20px; font-weight:400; color:var(--charcoal); min-width:24px; text-align:center; }
.armonelle-cart-item__remove { font-size:9px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; color:var(--stone-dk); cursor:pointer; transition:color 0.3s; background:none; border:none; font-family:var(--sans); margin-top:12px; display:block; }
.armonelle-cart-item__remove:hover { color:var(--charcoal); }
.armonelle-cart-item__price { font-family:var(--serif); font-size:24px; font-weight:400; color:var(--charcoal); white-space:nowrap; }
.armonelle-cart__summary { background:var(--cream); padding:48px 44px; position:sticky; top:96px; }
.armonelle-cart__summary-title { font-family:var(--serif); font-size:28px; font-weight:300; color:var(--charcoal); margin-bottom:40px; }
.armonelle-cart__summary-row { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; font-size:13px; font-weight:300; color:var(--charcoal-xs); }
.armonelle-cart__summary-row--total { font-family:var(--serif); font-size:24px; color:var(--charcoal); font-weight:400; border-top:1px solid var(--stone); padding-top:20px; margin-top:20px; }
.armonelle-cart__checkout { width:100%; margin-top:32px; }
.armonelle-cart__trust { display:flex; flex-direction:column; gap:12px; margin-top:28px; }
.armonelle-cart__trust-item { display:flex; align-items:center; gap:12px; font-size:11px; font-weight:300; color:var(--charcoal-xs); font-family:var(--sans); }

/* ── CHECKOUT ────────────────────────────────────────────── */
.armonelle-checkout { padding:100px 72px; display:grid; grid-template-columns:1fr 420px; gap:80px; align-items:start; }
.armonelle-checkout__title { font-family:var(--serif); font-size:clamp(36px,4vw,54px); font-weight:300; color:var(--charcoal); margin-bottom:60px; }
.armonelle-checkout__title em { font-style:italic; color:var(--olive); }
.armonelle-checkout__section { margin-bottom:48px; }
.armonelle-checkout__section-title { font-size:9px; font-weight:400; letter-spacing:0.35em; text-transform:uppercase; color:var(--gold); margin-bottom:28px; display:flex; align-items:center; gap:16px; font-family:var(--sans); }
.armonelle-checkout__section-title::before { content:''; width:24px; height:1px; background:var(--gold); }
.armonelle-checkout__grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.armonelle-checkout__grid--full { grid-template-columns:1fr; }
.armonelle-checkout__field { display:flex; flex-direction:column; gap:8px; }
.armonelle-checkout__label { font-size:9px; font-weight:400; letter-spacing:0.25em; text-transform:uppercase; color:var(--charcoal-lt); font-family:var(--sans); }
.armonelle-checkout__input { padding:16px 20px; background:var(--cream); border:1px solid var(--stone); color:var(--charcoal); font-family:var(--sans); font-size:13px; font-weight:300; outline:none; transition:border-color 0.3s, background 0.3s; }
.armonelle-checkout__input:focus { border-color:var(--olive); background:var(--white); }
.armonelle-checkout__input::placeholder { color:var(--stone-dk); }
select.armonelle-checkout__input { cursor:pointer; appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A74' stroke-width='1.2' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; padding-right:44px; }
.armonelle-checkout__order { background:var(--cream); padding:44px; position:sticky; top:96px; }
.armonelle-checkout__order-title { font-family:var(--serif); font-size:26px; font-weight:300; color:var(--charcoal); margin-bottom:36px; }
.armonelle-checkout__order-item { display:flex; justify-content:space-between; align-items:start; padding:16px 0; border-bottom:1px solid var(--travertine-dk); gap:16px; }
.armonelle-checkout__order-item-name { font-family:var(--serif); font-size:16px; font-weight:400; color:var(--charcoal); }
.armonelle-checkout__order-item-qty { font-size:10px; font-weight:300; color:var(--charcoal-xs); margin-top:4px; font-family:var(--sans); }
.armonelle-checkout__order-item-price { font-family:var(--serif); font-size:18px; font-weight:400; color:var(--charcoal); white-space:nowrap; }
.armonelle-checkout__order-total { display:flex; justify-content:space-between; align-items:center; padding-top:24px; margin-top:8px; }
.armonelle-checkout__order-total-label { font-size:9px; font-weight:400; letter-spacing:0.3em; text-transform:uppercase; color:var(--charcoal-xs); font-family:var(--sans); }
.armonelle-checkout__order-total-price { font-family:var(--serif); font-size:28px; font-weight:400; color:var(--charcoal); }
.armonelle-checkout__pay { width:100%; margin-top:32px; padding:20px; font-size:9px; }
.armonelle-checkout__secure { display:flex; align-items:center; justify-content:center; gap:8px; margin-top:16px; font-size:9.5px; font-weight:300; color:var(--charcoal-xs); font-family:var(--sans); letter-spacing:0.1em; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.armonelle-page-hero { padding:160px 72px 100px; background:var(--cream); position:relative; overflow:hidden; }
.armonelle-page-hero::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(to right,transparent,var(--gold-xs),transparent); }
.armonelle-page-hero__kicker { font-size:8.5px; font-weight:400; letter-spacing:0.42em; text-transform:uppercase; color:var(--gold); margin-bottom:36px; display:flex; align-items:center; gap:18px; font-family:var(--sans); }
.armonelle-page-hero__kicker::before { content:''; width:44px; height:1px; background:var(--gold); }
.armonelle-page-hero__title { font-family:var(--serif); font-size:clamp(52px,7vw,100px); font-weight:300; line-height:0.98; color:var(--ink); margin-bottom:36px; }
.armonelle-page-hero__title em { font-style:italic; color:var(--olive); }
.armonelle-page-hero__body { font-size:13px; font-weight:300; line-height:1.9; color:var(--charcoal-xs); max-width:520px; letter-spacing:0.02em; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:0.7} }
@keyframes rotateSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes armonelleTicker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.6);opacity:0} }
@keyframes steamRise { 0%{transform:scaleX(1) translateY(0);opacity:0} 30%{opacity:0.8} 100%{transform:scaleX(2.5) translateY(-40px);opacity:0} }

/* ── WOOCOMMERCE OVERRIDES ───────────────────────────────── */
.woocommerce-notices-wrapper { max-width:1200px; margin:0 auto; padding:0 72px; }
.woocommerce-message, .woocommerce-error, .woocommerce-info { font-family:var(--sans); font-size:12px; font-weight:300; letter-spacing:0.05em; padding:16px 24px; border-left:3px solid var(--olive); background:var(--cream); color:var(--charcoal); margin-bottom:24px; }
.woocommerce-message { border-color:var(--olive); }
.woocommerce-error { border-color:#c0392b; }

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .armonelle-nav { padding:0 36px; }
  .armonelle-section { padding:100px 48px; }
  .armonelle-shop__hero { padding:100px 48px 60px; }
  .armonelle-shop__filters, .armonelle-shop__grid { padding-left:48px; padding-right:48px; }
  .armonelle-cart { padding:100px 48px; grid-template-columns:1fr 340px; gap:48px; }
  .armonelle-checkout { padding:80px 48px; grid-template-columns:1fr 360px; gap:48px; }
}

@media (max-width: 768px) {
  .armonelle-nav { padding:0 20px; height:60px; }
  .armonelle-nav__links, .armonelle-nav__cta { display:none; }
  .armonelle-nav__hamburger { display:flex; }
  .armonelle-page { padding-top:60px; }
  .armonelle-hero { grid-template-columns:1fr; height:auto; min-height:100svh; margin-top:-60px; }
  .armonelle-hero__left { padding:80px 24px 48px; justify-content:center; min-height:55svh; }
  .armonelle-hero__right { min-height:45svh; }
  .armonelle-section { padding:80px 24px; }
  .armonelle-ritual__steps { grid-template-columns:1fr; gap:48px; }
  .armonelle-ritual__step { padding:0; }
  .armonelle-ritual__step:nth-child(2) { border:none; padding:48px 0; border-top:1px solid var(--travertine-dk); border-bottom:1px solid var(--travertine-dk); }
  .armonelle-products__header { flex-direction:column; align-items:flex-start; gap:24px; }
  .armonelle-products__grid { grid-template-columns:1fr; }
  .armonelle-product-card--hero { grid-row:auto; }
  .armonelle-product-card--hero .armonelle-product-card__visual { height:400px; }
  .armonelle-origin { grid-template-columns:1fr; }
  .armonelle-origin__visual { min-height:400px; }
  .armonelle-origin__stats { left:24px; right:24px; }
  .armonelle-origin__content { padding:64px 24px; border-left:none; border-top:1px solid rgba(176,146,104,0.1); }
  .armonelle-reviews__header { flex-direction:column; align-items:flex-start; gap:24px; }
  .armonelle-reviews__meta { text-align:left; }
  .armonelle-reviews__grid { grid-template-columns:1fr; }
  .armonelle-newsletter { grid-template-columns:1fr; gap:40px; padding:80px 24px; }
  .armonelle-footer { padding:64px 24px 40px; }
  .armonelle-footer__grid { grid-template-columns:1fr 1fr; gap:40px; }
  .armonelle-footer__bottom { flex-direction:column; align-items:flex-start; }
  .armonelle-shop__hero { padding:80px 24px 48px; }
  .armonelle-shop__filters { padding:0 24px 36px; }
  .armonelle-shop__grid { padding:0 24px 80px; grid-template-columns:1fr 1fr; gap:12px; }
  .armonelle-product { grid-template-columns:1fr; }
  .armonelle-product__gallery { position:relative; height:480px; top:0; }
  .armonelle-product__info { padding:48px 24px 80px; }
  .armonelle-cart { padding:80px 24px; grid-template-columns:1fr; }
  .armonelle-checkout { padding:80px 24px; grid-template-columns:1fr; }
  .armonelle-checkout__grid { grid-template-columns:1fr; }
  .armonelle-page-hero { padding:100px 24px 64px; }
}

@media (max-width: 480px) {
  .armonelle-footer__grid { grid-template-columns:1fr; }
  .armonelle-shop__grid { grid-template-columns:1fr; }
}
