/* ══════════════════════════════════════════
   AURA MODERNIA — Shared Stylesheet
   ══════════════════════════════════════════ */

*{margin:0;padding:0;box-sizing:border-box;}

:root{
  --cream:#F8F4EE;
  --cream-dark:#EEE8DF;
  --navy:#1E2D4A;
  --rose:#915070;
  --terracotta:#C4623A;
  --amber:#D4882A;
  --olive:#4A5E3A;
  --charcoal:#2A2A28;
  --silver:#8A8A84;
  --gold:#C9963C;
}

html{scroll-behavior:smooth;}
body{
  font-family:'Jost',sans-serif;
  background:var(--cream);
  color:var(--charcoal);
  overflow-x:hidden;
  opacity:0;
  animation: pageReveal 0.6s 0.4s ease forwards; /* CSS-only fallback if JS fails */
  transition:opacity 0.28s ease;
}
@keyframes pageReveal { to { opacity: 1; } }
body.page-loaded{opacity:1;animation:none;}
body.page-leaving{opacity:0;animation:none;}

/* ─── TYPOGRAPHY ─── */
h1,h2,h3{font-family:'Cormorant Garamond',serif;font-weight:300;}
a{color:inherit;text-decoration:none;}

/* ─── NAV ─── */
nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.4rem 4rem;
  background:var(--cream);
  border-bottom:0.5px solid rgba(42,42,40,0.12);
  position:sticky;top:0;z-index:100;
}
.logo{
  font-family:'Cormorant Garamond',serif;
  font-size:1.35rem;font-weight:600;letter-spacing:0.08em;
  display:flex;align-items:baseline;gap:0.4rem;
}
.logo-aura{background:linear-gradient(90deg,#1E2D4A 0%,#915070 40%,#C4623A 70%,#D4882A 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.logo-mod{color:var(--charcoal);font-weight:300;font-size:1rem;letter-spacing:0.3em;}
.nav-links{display:flex;gap:2.5rem;list-style:none;}
.nav-links a{
  font-size:0.72rem;letter-spacing:0.2em;text-transform:uppercase;
  text-decoration:none;color:var(--charcoal);font-weight:300;transition:color 0.2s;
  position:relative;
}
.nav-links a:hover,.nav-links a.active{color:var(--terracotta);}
.nav-links a.active::after{
  content:'';position:absolute;bottom:-4px;left:0;right:0;
  height:1px;background:var(--terracotta);
}
.nav-right{display:flex;align-items:center;gap:1.5rem;}
.nav-icon{font-size:1rem;color:var(--charcoal);cursor:pointer;background:none;border:none;position:relative;}
.cart-badge{
  position:absolute;top:-8px;right:-8px;
  width:16px;height:16px;border-radius:50%;
  background:var(--terracotta);color:var(--cream);
  font-size:0.55rem;font-family:'Jost',sans-serif;
  display:none;align-items:center;justify-content:center;font-weight:500;
}
.nav-cta{
  background:var(--charcoal);color:var(--cream);
  padding:0.55rem 1.4rem;font-size:0.68rem;letter-spacing:0.18em;text-transform:uppercase;
  font-family:'Jost',sans-serif;font-weight:300;border:none;cursor:pointer;
  transition:background 0.2s;
}
.nav-cta:hover{background:var(--terracotta);}

/* ─── HAMBURGER ─── */
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:4px;}
.hamburger span{display:block;width:24px;height:1.5px;background:var(--charcoal);transition:all 0.3s;}
.hamburger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;}
.hamburger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg);}

/* ─── MOBILE MENU ─── */
.mobile-menu{
  display:none;position:fixed;inset:0;background:var(--cream);z-index:200;
  flex-direction:column;align-items:center;justify-content:center;gap:2.5rem;
  opacity:0;transition:opacity 0.3s;
}
.mobile-menu.open{display:flex;opacity:1;}
.mobile-menu a{
  font-family:'Cormorant Garamond',serif;font-size:2.2rem;font-weight:300;
  color:var(--charcoal);text-decoration:none;letter-spacing:0.05em;transition:color 0.2s;
}
.mobile-menu a:hover,.mobile-menu a.active{color:var(--terracotta);}
.mobile-menu-close{position:absolute;top:1.5rem;right:1.5rem;background:none;border:none;font-size:1.5rem;cursor:pointer;color:var(--charcoal);}
.mobile-menu-footer{font-size:0.65rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--silver);margin-top:1rem;}

/* ─── FOOTER ─── */
footer{background:var(--charcoal);color:var(--cream);padding:5rem 4.5rem 2.5rem;}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:4rem;margin-bottom:4rem;padding-bottom:4rem;border-bottom:0.5px solid rgba(248,244,238,0.1);}
.footer-logo{font-family:'Cormorant Garamond',serif;font-size:1.8rem;font-weight:300;letter-spacing:0.05em;margin-bottom:1rem;}
.footer-logo .fl-aura{background:linear-gradient(90deg,#1E2D4A,#915070,#C4623A,#D4882A);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.footer-desc{font-size:0.82rem;line-height:1.9;color:rgba(248,244,238,0.45);max-width:240px;margin-bottom:2rem;}
.footer-social{display:flex;gap:0.8rem;}
.soc-btn{width:36px;height:36px;border:0.5px solid rgba(248,244,238,0.2);display:flex;align-items:center;justify-content:center;font-size:0.75rem;cursor:pointer;color:rgba(248,244,238,0.6);transition:border-color 0.2s,color 0.2s;}
.soc-btn:hover{border-color:var(--terracotta);color:var(--terracotta);}
.footer-col-head{font-size:0.6rem;letter-spacing:0.28em;text-transform:uppercase;color:rgba(248,244,238,0.35);margin-bottom:1.5rem;}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:0.85rem;}
.footer-links a{font-size:0.82rem;color:rgba(248,244,238,0.65);text-decoration:none;transition:color 0.2s;}
.footer-links a:hover{color:var(--terracotta);}
.footer-wa{display:flex;align-items:center;gap:0.5rem;margin-top:1.2rem;background:#25D366;color:white;padding:0.7rem 1.2rem;font-size:0.65rem;letter-spacing:0.15em;text-transform:uppercase;font-family:'Jost',sans-serif;font-weight:300;border:none;cursor:pointer;width:fit-content;transition:opacity 0.2s;}
.footer-wa:hover{opacity:0.88;}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;font-size:0.68rem;color:rgba(248,244,238,0.25);letter-spacing:0.06em;}
.footer-bottom a{color:rgba(248,244,238,0.35);text-decoration:none;}
.footer-bottom a:hover{color:var(--terracotta);}

/* ─── BUTTONS ─── */
.btn-fill{
  background:var(--charcoal);color:var(--cream);
  padding:1rem 2.8rem;font-size:0.7rem;letter-spacing:0.22em;
  text-transform:uppercase;font-family:'Jost',sans-serif;font-weight:300;
  border:1px solid var(--charcoal);cursor:pointer;transition:all 0.25s;display:inline-block;
}
.btn-fill:hover{background:var(--terracotta);border-color:var(--terracotta);}
.btn-ghost{
  background:none;color:var(--charcoal);
  padding:1rem 2.2rem;font-size:0.7rem;letter-spacing:0.22em;
  text-transform:uppercase;font-family:'Jost',sans-serif;font-weight:300;
  border:1px solid var(--charcoal);cursor:pointer;transition:all 0.25s;display:inline-block;
}
.btn-ghost:hover{background:var(--charcoal);color:var(--cream);}
.btn-wa{
  background:#25D366;color:white;
  padding:1rem 2.2rem;font-size:0.7rem;letter-spacing:0.2em;
  text-transform:uppercase;font-family:'Jost',sans-serif;font-weight:300;
  border:none;cursor:pointer;transition:opacity 0.2s;display:inline-flex;align-items:center;gap:0.6rem;
}
.btn-wa:hover{opacity:0.88;}

/* ─── SECTION SHARED ─── */
.sec-header{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:3rem;}
.sec-title{font-family:'Cormorant Garamond',serif;font-size:2.8rem;font-weight:300;}
.sec-link{font-size:0.65rem;letter-spacing:0.22em;text-transform:uppercase;color:var(--terracotta);text-decoration:none;border-bottom:1px solid var(--terracotta);padding-bottom:2px;transition:opacity 0.2s;}
.sec-link:hover{opacity:0.7;}

/* ─── TICKER ─── */
.ticker{background:var(--charcoal);color:var(--cream);padding:0.85rem 0;overflow:hidden;white-space:nowrap;}
.ticker-inner{display:inline-flex;gap:0;animation:ticker 22s linear infinite;}
.tick-item{font-size:0.65rem;letter-spacing:0.25em;text-transform:uppercase;padding:0 3rem;font-weight:300;}
.tick-sep{color:var(--terracotta);}
@keyframes ticker{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* ─── PRODUCT CARDS ─── */
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;margin-top:3rem;}
.prod-card{background:var(--cream);cursor:pointer;transition:transform 0.3s,box-shadow 0.3s;box-shadow:0 2px 12px rgba(42,42,40,0.06);}
.prod-card:hover{transform:translateY(-6px);box-shadow:0 12px 36px rgba(42,42,40,0.12);}
.prod-img{height:280px;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center;}
.prod-tag{position:absolute;top:1rem;left:1rem;background:var(--terracotta);color:var(--cream);font-size:0.52rem;letter-spacing:0.15em;padding:0.3rem 0.7rem;text-transform:uppercase;}
.prod-wish{
  position:absolute;top:1rem;right:1rem;width:32px;height:32px;
  background:var(--cream);display:flex;align-items:center;justify-content:center;
  font-size:0.9rem;cursor:pointer;border:none;transition:all 0.2s;
}
.prod-wish:hover{background:var(--terracotta);color:var(--cream);}
.prod-wish.active{background:var(--terracotta);color:var(--cream);}
.prod-info{padding:1.2rem 1rem 1.4rem;}
.prod-name{font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:400;margin-bottom:0.3rem;}
.prod-mat{font-size:0.6rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--silver);margin-bottom:0.7rem;}
.prod-footer{display:flex;justify-content:space-between;align-items:center;}
.prod-price{font-size:0.95rem;font-weight:500;color:var(--terracotta);}
.prod-btn{
  background:none;border:0.5px solid var(--charcoal);
  padding:0.45rem 0.9rem;font-size:0.58rem;letter-spacing:0.15em;
  text-transform:uppercase;cursor:pointer;font-family:'Jost',sans-serif;transition:all 0.2s;
}
.prod-btn:hover{background:var(--charcoal);color:var(--cream);}

/* ─── NEWSLETTER ─── */
.newsletter{background:var(--cream-dark);padding:5rem 4.5rem;display:flex;align-items:center;justify-content:space-between;gap:3rem;}
.nl-left{flex:1;}
.nl-pre{font-size:0.62rem;letter-spacing:0.28em;text-transform:uppercase;color:var(--silver);margin-bottom:0.7rem;}
.nl-title{font-family:'Cormorant Garamond',serif;font-size:2.2rem;font-weight:300;line-height:1.3;}
.nl-right{flex:1;display:flex;gap:0;}
.nl-input{flex:1;padding:1rem 1.5rem;font-size:0.78rem;font-family:'Jost',sans-serif;border:0.5px solid var(--charcoal);background:var(--cream);outline:none;letter-spacing:0.05em;}
.nl-input:focus{border-color:var(--terracotta);}
.nl-btn{padding:1rem 2rem;background:var(--charcoal);color:var(--cream);font-size:0.68rem;letter-spacing:0.2em;text-transform:uppercase;font-family:'Jost',sans-serif;font-weight:300;border:none;cursor:pointer;white-space:nowrap;transition:background 0.2s;}
.nl-btn:hover{background:var(--terracotta);}

/* ─── CART TOAST ─── */
.cart-toast{
  position:fixed;bottom:2rem;right:2rem;z-index:999;
  background:var(--charcoal);color:var(--cream);
  padding:1rem 1.5rem;font-size:0.72rem;letter-spacing:0.1em;
  transform:translateY(120%);transition:transform 0.3s ease;
  pointer-events:none;
}
.cart-toast.visible{transform:translateY(0);pointer-events:auto;}
.cart-toast a{color:var(--terracotta);text-decoration:underline;}

/* ══════════════════════════════════════════
   CSS ART — PRODUCT ILLUSTRATIONS
   ══════════════════════════════════════════ */

/* Eagle Bust (hero & product card) */
.art-eagle{position:relative;width:130px;height:200px;}
.ae-bust{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:75px;height:130px;background:#F0EBE3;border-radius:37px 37px 10px 10px;}
.ae-head{position:absolute;bottom:120px;left:50%;transform:translateX(-50%);width:46px;height:50px;background:#EDE6DA;border-radius:50%;}
.ae-hat{position:absolute;bottom:158px;left:50%;transform:translateX(-50%);width:68px;height:10px;background:#EDE6DA;border-radius:50%;}
.ae-wl{position:absolute;bottom:158px;left:-22px;width:64px;height:36px;background:linear-gradient(135deg,#2a2a28,#c9963c);border-radius:30px 0 30px 5px;transform:rotate(-12deg);}
.ae-wr{position:absolute;bottom:158px;right:-22px;width:64px;height:36px;background:linear-gradient(225deg,#2a2a28,#c9963c);border-radius:0 30px 5px 30px;transform:rotate(12deg);}
.ae-base{position:absolute;bottom:-6px;left:50%;transform:translateX(-50%);width:95px;height:10px;background:#1E2D4A;}
.bg-eagle{background:linear-gradient(160deg,#E8E2D8,#D5CEC3);}

/* Chrome Bear */
.art-bear{position:relative;width:110px;height:170px;}
.ab-body{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:80px;height:110px;background:linear-gradient(145deg,#D0D0C8,#A0A098);border-radius:40px;}
.ab-head{position:absolute;bottom:100px;left:50%;transform:translateX(-50%);width:62px;height:58px;background:linear-gradient(145deg,#D8D8D0,#B0B0A8);border-radius:50%;}
.ab-el{position:absolute;bottom:140px;left:4px;width:18px;height:16px;background:linear-gradient(145deg,#D0D0C8,#A0A098);border-radius:50%;}
.ab-er{position:absolute;bottom:140px;right:4px;width:18px;height:16px;background:linear-gradient(145deg,#D0D0C8,#A0A098);border-radius:50%;}
.ab-base{position:absolute;bottom:-4px;left:50%;transform:translateX(-50%);width:90px;height:8px;background:#2A2A28;}
.bg-bear{background:linear-gradient(160deg,#1A1A18,#2A2A28);}

/* Wavy Vase */
.art-vase{position:relative;width:80px;height:160px;}
.av-body{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:70px;height:140px;background:linear-gradient(180deg,#D4882A,#8A3820);border-radius:20px 20px 35px 35px;}
.av-neck{position:absolute;bottom:130px;left:50%;transform:translateX(-50%);width:28px;height:30px;background:#D4882A;border-radius:14px;}
.av-wave{position:absolute;top:20px;left:10px;right:10px;height:60px;border:2px solid rgba(255,255,255,0.25);border-radius:50%;}
.bg-vase-dark{background:linear-gradient(160deg,#2E1E14,#4A3020);}

/* Stairs / Thinker */
.art-think{position:relative;width:120px;height:170px;}
.at-body{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:70px;height:90px;background:#2A2A28;border-radius:35px 35px 10px 10px;}
.at-head{position:absolute;bottom:82px;left:48%;transform:translateX(-50%);width:44px;height:46px;background:#333330;border-radius:50%;}
.at-arm{position:absolute;bottom:82px;left:30%;width:50px;height:16px;background:#2A2A28;border-radius:8px;transform:rotate(-25deg);}
.at-ladder{position:absolute;right:5px;bottom:0;width:5px;height:110px;background:var(--gold);border-radius:2px;}
.at-lad2{position:absolute;right:22px;bottom:0;width:5px;height:110px;background:var(--gold);border-radius:2px;}
.at-rung{position:absolute;right:5px;height:4px;background:var(--gold);}
.bg-think{background:linear-gradient(160deg,#EDE8E0,#D5CFC5);}

/* Oracle Bust */
.art-bust{position:relative;width:110px;height:185px;}
.ab2-plinth{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:90px;height:30px;background:#1a1a18;border-radius:2px;}
.ab2-neck{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);width:22px;height:40px;background:#F0EBE3;}
.ab2-shoulder{position:absolute;bottom:60px;left:50%;transform:translateX(-50%);width:80px;height:30px;background:#F0EBE3;border-radius:40px 40px 0 0;}
.ab2-head{position:absolute;bottom:84px;left:50%;transform:translateX(-50%);width:54px;height:62px;background:#EDE6DA;border-radius:50% 50% 40% 40%;}
.ab2-feature{position:absolute;bottom:110px;left:50%;transform:translateX(-50%);width:30px;height:6px;background:rgba(42,42,40,0.15);border-radius:3px;}
.bg-oracle{background:linear-gradient(160deg,#E4DDD5,#CCC4B8);}

/* Terracotta Wide Vase */
.art-vase-terra{position:relative;width:110px;height:140px;}
.avt-body{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:100px;height:110px;background:linear-gradient(160deg,#C4623A,#8a3820);border-radius:50% 50% 30% 30%;}
.avt-neck{position:absolute;bottom:100px;left:50%;transform:translateX(-50%);width:34px;height:28px;background:#C4623A;border-radius:17px;}
.avt-rim{position:absolute;bottom:122px;left:50%;transform:translateX(-50%);width:50px;height:8px;background:#D4723A;border-radius:4px;}
.avt-texture{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);width:80px;height:2px;background:rgba(255,255,255,0.15);border-radius:1px;}
.avt-texture2{position:absolute;bottom:38px;left:50%;transform:translateX(-50%);width:70px;height:2px;background:rgba(255,255,255,0.1);border-radius:1px;}
.bg-terra{background:linear-gradient(160deg,#F0E8DE,#E0D0C0);}

/* Midnight Slim Vase */
.art-vase-blue{position:relative;width:55px;height:175px;}
.avb-body{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:50px;height:155px;background:linear-gradient(180deg,#2a3d5a,#1E2D4A);border-radius:10px 10px 25px 25px;}
.avb-neck{position:absolute;bottom:148px;left:50%;transform:translateX(-50%);width:20px;height:25px;background:#2a3d5a;border-radius:10px;}
.avb-rim{position:absolute;bottom:168px;left:50%;transform:translateX(-50%);width:36px;height:6px;background:#3a4d6a;border-radius:3px;}
.avb-sheen{position:absolute;top:20px;left:8px;width:10px;height:60px;background:rgba(255,255,255,0.08);border-radius:5px;}
.bg-midnight{background:linear-gradient(160deg,#0E1822,#1E2D4A);}

/* Abstract Painting 1 */
.art-painting-1{position:relative;width:140px;height:180px;}
.ap1-canvas{position:absolute;inset:0;background:#EDE8E0;border:3px solid rgba(42,42,40,0.06);}
.ap1-arc1{position:absolute;top:-20px;left:-20px;width:120px;height:120px;border-radius:50%;background:var(--terracotta);opacity:0.85;}
.ap1-arc2{position:absolute;bottom:-10px;right:-10px;width:100px;height:100px;border-radius:50%;background:var(--navy);opacity:0.7;}
.ap1-block{position:absolute;top:50%;left:50%;transform:translate(-30%,-40%);width:50px;height:50px;background:var(--amber);opacity:0.9;}
.ap1-line{position:absolute;bottom:30px;left:20px;right:20px;height:2px;background:var(--cream);opacity:0.5;}
.bg-paint-canvas{background:linear-gradient(160deg,#2a2a28,#444440);}

/* Abstract Painting 2 */
.art-painting-2{position:relative;width:150px;height:175px;}
.ap2-canvas{position:absolute;inset:0;background:#F8F4EE;}
.ap2-sky{position:absolute;top:0;left:0;right:0;height:60%;background:linear-gradient(180deg,#EDE8DC,#E8E2D4);}
.ap2-ground{position:absolute;bottom:0;left:0;right:0;height:45%;background:linear-gradient(180deg,var(--terracotta),#8a3820);}
.ap2-arc{position:absolute;bottom:40%;left:50%;transform:translateX(-50%);width:120px;height:60px;background:var(--olive);border-radius:60px 60px 0 0;}
.ap2-dot{position:absolute;top:15%;right:20%;width:20px;height:20px;background:var(--amber);border-radius:50%;}
.bg-paint-terra{background:linear-gradient(160deg,#EEE8DC,#DDD4C4);}

/* Candle Set */
.art-candle{position:relative;width:120px;height:160px;}
.ac-base{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:110px;height:10px;background:var(--gold);border-radius:2px;}
.ac-c1{position:absolute;bottom:10px;left:10px;width:22px;height:80px;background:linear-gradient(180deg,#EDE8DC,#D5C8A8);border-radius:3px;}
.ac-c2{position:absolute;bottom:10px;left:50%;transform:translateX(-50%);width:22px;height:120px;background:linear-gradient(180deg,#F5F0E8,#E0D4B8);border-radius:3px;}
.ac-c3{position:absolute;bottom:10px;right:10px;width:22px;height:60px;background:linear-gradient(180deg,#EDE8DC,#D5C8A8);border-radius:3px;}
.ac-f1{position:absolute;bottom:88px;left:21px;width:8px;height:14px;background:linear-gradient(0deg,var(--amber),#fff5a0);border-radius:50% 50% 30% 30%;animation:flicker 1.4s infinite alternate;}
.ac-f2{position:absolute;bottom:128px;left:50%;transform:translateX(-50%);width:8px;height:16px;background:linear-gradient(0deg,var(--amber),#fff5a0);border-radius:50% 50% 30% 30%;animation:flicker 1.8s infinite alternate;}
.ac-f3{position:absolute;bottom:68px;right:21px;width:8px;height:12px;background:linear-gradient(0deg,var(--amber),#fff5a0);border-radius:50% 50% 30% 30%;animation:flicker 1.2s infinite alternate;}
@keyframes flicker{from{transform:scaleX(1) scaleY(1);}to{transform:scaleX(0.85) scaleY(0.92);}}
.bg-candle{background:linear-gradient(160deg,#1E1C16,#2E2A20);}

/* Orbital Sphere */
.art-sphere{position:relative;width:110px;height:160px;}
.as-stand{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:3px;height:60px;background:var(--gold);}
.as-base{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:30px;height:6px;background:var(--gold);border-radius:3px;}
.as-orb{position:absolute;bottom:50px;left:50%;transform:translateX(-50%);width:80px;height:80px;border-radius:50%;background:radial-gradient(circle at 35% 35%,#f5f0e8,var(--gold) 60%,#8a6820);}
.as-leaf{position:absolute;bottom:70px;left:50%;transform:translateX(-50%);width:70px;height:70px;border-radius:50%;border:1px solid rgba(201,150,60,0.3);}
.bg-sphere{background:linear-gradient(160deg,#1E1C14,#2E2A1C);}

/* Seated Muse */
.art-thinker{position:relative;width:110px;height:175px;}
.atk-base{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:80px;height:12px;background:#888880;border-radius:2px;}
.atk-plinth{position:absolute;bottom:12px;left:50%;transform:translateX(-50%);width:55px;height:18px;background:#666660;border-radius:2px;}
.atk-body{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);width:48px;height:65px;background:#1E1C18;border-radius:24px 24px 8px 8px;}
.atk-leg1{position:absolute;bottom:28px;left:30%;width:20px;height:40px;background:#1E1C18;border-radius:10px;transform:rotate(15deg);}
.atk-leg2{position:absolute;bottom:28px;left:40%;width:20px;height:40px;background:#1E1C18;border-radius:10px;transform:rotate(-10deg);}
.atk-head{position:absolute;bottom:88px;left:50%;transform:translateX(-55%);width:38px;height:40px;background:#252318;border-radius:50%;border:2px solid rgba(255,255,255,0.04);}
.atk-arm{position:absolute;bottom:88px;left:25%;width:36px;height:12px;background:#1E1C18;border-radius:6px;transform:rotate(-35deg);}
.atk-hand{position:absolute;bottom:102px;left:20%;width:14px;height:14px;background:#1E1C18;border-radius:50%;}
.bg-muse{background:linear-gradient(160deg,#E8E4DC,#D8D2C8);}

/* ══════════════════════════════════════════
   HOMEPAGE SPECIFIC
   ══════════════════════════════════════════ */

/* Hero */
.hero{display:grid;grid-template-columns:1fr 1fr;min-height:91vh;}
.hero-left{padding:5rem 3.5rem 4rem 4.5rem;display:flex;flex-direction:column;justify-content:center;animation:fadeUp 1s ease both;}
.hero-eyebrow{font-size:0.65rem;letter-spacing:0.35em;text-transform:uppercase;color:var(--silver);margin-bottom:2.5rem;display:flex;align-items:center;gap:0.8rem;}
.hero-eyebrow::before{content:'';display:block;width:30px;height:0.5px;background:var(--silver);}
.hero-title{font-family:'Cormorant Garamond',serif;font-size:8.5rem;font-weight:300;line-height:0.88;letter-spacing:-0.02em;margin-bottom:0.5rem;}
.hero-title .A1{color:#1E2D4A;}
.hero-title .U{color:#915070;}
.hero-title .R{color:#C4623A;}
.hero-title .A2{color:#D4882A;}
.hero-subtitle{font-family:'Jost',sans-serif;font-size:1rem;font-weight:200;letter-spacing:0.55em;text-transform:uppercase;color:var(--charcoal);margin-bottom:0.5rem;}
.hero-line{width:40px;height:0.5px;background:var(--silver);margin:1.8rem 0;}
.hero-tagline{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:1.15rem;color:var(--silver);letter-spacing:0.04em;margin-bottom:3.5rem;line-height:1.6;max-width:320px;}
.hero-actions{display:flex;gap:1.2rem;align-items:center;}

/* Hero right visual */
.hero-right{background:#E4DDD3;position:relative;overflow:hidden;}
.hero-img-area{width:100%;height:100%;display:flex;align-items:center;justify-content:center;position:relative;}
.sculpt{position:relative;width:260px;height:380px;}
.bust{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:110px;height:195px;background:#F0EBE3;border-radius:55px 55px 15px 15px;}
.head{position:absolute;bottom:180px;left:50%;transform:translateX(-50%);width:68px;height:72px;background:#EDE6DA;border-radius:50% 50% 40% 40%;}
.hat{position:absolute;bottom:238px;left:50%;transform:translateX(-50%);width:100px;height:14px;background:#EDE6DA;border-radius:50%;}
.wing-l{position:absolute;bottom:235px;left:-30px;width:100px;height:55px;background:linear-gradient(135deg,#2A2A28,#C9963C);border-radius:50px 0 50px 10px;transform:rotate(-15deg);}
.wing-r{position:absolute;bottom:235px;right:-30px;width:100px;height:55px;background:linear-gradient(225deg,#2A2A28,#C9963C);border-radius:0 50px 10px 50px;transform:rotate(15deg);}
.pedestal{position:absolute;bottom:-10px;left:50%;transform:translateX(-50%);width:140px;height:16px;background:#1E2D4A;border-radius:2px;}
.vase-side{position:absolute;right:-10px;bottom:20px;width:60px;height:100px;background:linear-gradient(180deg,#C4623A,#8A3820);border-radius:30px 30px 18px 18px;}
.glow-orb{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:350px;height:350px;background:radial-gradient(circle,rgba(196,98,58,0.15) 0%,transparent 65%);border-radius:50%;pointer-events:none;}
.hero-badge{position:absolute;top:2.5rem;right:2.5rem;width:85px;height:85px;border-radius:50%;border:1px solid rgba(42,42,40,0.3);display:flex;align-items:center;justify-content:center;text-align:center;font-size:0.5rem;letter-spacing:0.12em;text-transform:uppercase;line-height:1.8;color:var(--charcoal);animation:spin 18s linear infinite;}
.hero-tag{position:absolute;bottom:3rem;left:2.5rem;background:var(--charcoal);color:var(--cream);padding:0.6rem 1.2rem;font-size:0.6rem;letter-spacing:0.2em;text-transform:uppercase;}

/* Categories */
.categories{padding:6rem 4.5rem;}
.cat-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 0.9fr;gap:1rem;height:320px;}
.cat-card{position:relative;overflow:hidden;cursor:pointer;}
.cat-card:hover .cat-inner{transform:scale(1.03);}
.cat-inner{width:100%;height:100%;transition:transform 0.5s ease;display:flex;align-items:flex-end;padding:1.5rem;}
.cat-pill{background:rgba(248,244,238,0.92);padding:0.5rem 1.1rem;font-size:0.63rem;letter-spacing:0.22em;text-transform:uppercase;font-weight:400;color:var(--charcoal);}
.cat-count{font-size:0.55rem;color:var(--silver);display:block;margin-top:0.2rem;}
.bg-sculpt{background:linear-gradient(160deg,#1a2438 0%,#2d3f5e 100%);}
.bg-vase{background:linear-gradient(160deg,#3d2218 0%,#c4623a 100%);}
.bg-paint{background:linear-gradient(160deg,#2e1f30 0%,#7a4068 100%);}
.bg-acc{background:linear-gradient(160deg,#2a3020 0%,#4a5e3a 100%);}
.shape-s{position:absolute;top:15%;left:50%;transform:translateX(-50%);}
.blob1{width:60px;height:90px;background:rgba(255,255,255,0.07);border-radius:30px 30px 20px 20px;}
.blob2{width:44px;height:75px;background:rgba(255,255,255,0.09);border-radius:22px 22px 14px 14px;}
.blob3{width:70px;height:52px;background:rgba(255,255,255,0.06);border-radius:4px;}
.blob4{width:36px;height:36px;background:rgba(255,255,255,0.1);border-radius:50%;}

/* Products section */
.products{padding:4rem 4.5rem 6rem;background:var(--cream-dark);}

/* Brand Story */
.brand-story{display:grid;grid-template-columns:1fr 1fr;min-height:520px;}
.story-l{background:var(--charcoal);color:var(--cream);padding:6rem 4.5rem;display:flex;flex-direction:column;justify-content:center;}
.story-pre{font-size:0.6rem;letter-spacing:0.3em;text-transform:uppercase;color:rgba(248,244,238,0.4);margin-bottom:1.5rem;}
.story-quote{font-family:'Cormorant Garamond',serif;font-size:2.6rem;font-weight:300;line-height:1.35;font-style:italic;margin-bottom:2rem;}
.story-quote em{color:var(--terracotta);font-style:normal;}
.story-body{font-size:0.88rem;line-height:1.9;color:rgba(248,244,238,0.55);max-width:380px;margin-bottom:2.5rem;}
.story-stat{display:flex;gap:3rem;margin-bottom:2.5rem;}
.stat-n{font-family:'Cormorant Garamond',serif;font-size:2.5rem;font-weight:300;color:var(--terracotta);}
.stat-l{font-size:0.65rem;letter-spacing:0.18em;text-transform:uppercase;color:rgba(248,244,238,0.4);}
.story-r{background:var(--olive);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;}
.story-r-inner{text-align:center;color:rgba(248,244,238,0.9);}
.sr-big{font-family:'Cormorant Garamond',serif;font-size:8rem;font-weight:300;line-height:1;color:rgba(248,244,238,0.08);}
.sr-small{font-size:0.7rem;letter-spacing:0.3em;text-transform:uppercase;color:rgba(248,244,238,0.4);margin-top:-2rem;}
.story-circle{position:absolute;width:250px;height:250px;border-radius:50%;border:1px solid rgba(248,244,238,0.15);top:50%;left:50%;transform:translate(-50%,-50%);}
.story-circle2{position:absolute;width:350px;height:350px;border-radius:50%;border:0.5px solid rgba(248,244,238,0.07);top:50%;left:50%;transform:translate(-50%,-50%);}

/* Instagram */
.instagram{padding:5rem 4.5rem;text-align:center;}
.insta-pre{font-size:0.65rem;letter-spacing:0.3em;text-transform:uppercase;color:var(--terracotta);margin-bottom:0.7rem;}
.insta-title{font-family:'Cormorant Garamond',serif;font-size:2.4rem;font-weight:300;margin-bottom:0.5rem;}
.insta-handle{font-size:0.75rem;letter-spacing:0.15em;color:var(--silver);margin-bottom:3rem;}
.insta-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:0.5rem;}
.insta-post{aspect-ratio:1;overflow:hidden;position:relative;cursor:pointer;}
.insta-post:hover .insta-overlay{opacity:1;}
.insta-overlay{position:absolute;inset:0;background:rgba(42,42,40,0.5);display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity 0.3s;font-size:0.6rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--cream);}
.ip1{background:linear-gradient(135deg,#1E2D4A,#3a5080);}
.ip2{background:linear-gradient(135deg,#C4623A,#8a3820);}
.ip3{background:linear-gradient(135deg,#2A2A28,#555550);}
.ip4{background:linear-gradient(135deg,#4A5E3A,#7a9060);}
.ip5{background:linear-gradient(135deg,#915070,#C4623A);}
.ip6{background:linear-gradient(135deg,#D4882A,#C4623A);}

/* ══════════════════════════════════════════
   SHOP PAGE
   ══════════════════════════════════════════ */
.shop-hero{padding:5rem 4.5rem 3rem;border-bottom:0.5px solid rgba(42,42,40,0.08);}
.shop-hero h1{font-family:'Cormorant Garamond',serif;font-size:3.5rem;font-weight:300;margin-bottom:0.5rem;}
.shop-hero p{font-size:0.8rem;color:var(--silver);letter-spacing:0.1em;}
.shop-body{display:grid;grid-template-columns:220px 1fr;gap:0;min-height:60vh;}

/* Filter sidebar */
.filter-sidebar{padding:3rem 2.5rem;border-right:0.5px solid rgba(42,42,40,0.08);position:sticky;top:80px;align-self:start;}
.filter-group{margin-bottom:2.5rem;}
.filter-label{font-size:0.58rem;letter-spacing:0.28em;text-transform:uppercase;color:var(--silver);margin-bottom:1.2rem;display:block;}
.filter-options{display:flex;flex-direction:column;gap:0.6rem;}
.filter-btn{
  background:none;border:none;text-align:left;cursor:pointer;
  font-family:'Jost',sans-serif;font-size:0.78rem;color:var(--charcoal);
  letter-spacing:0.05em;padding:0.3rem 0;transition:color 0.2s;
  display:flex;justify-content:space-between;align-items:center;
}
.filter-btn:hover{color:var(--terracotta);}
.filter-btn.active{color:var(--terracotta);font-weight:500;}
.filter-count{font-size:0.6rem;color:var(--silver);}
.price-inputs{display:flex;gap:0.5rem;align-items:center;}
.price-input{width:70px;padding:0.4rem 0.6rem;border:0.5px solid rgba(42,42,40,0.2);font-size:0.7rem;font-family:'Jost',sans-serif;background:transparent;outline:none;}
.price-sep{font-size:0.7rem;color:var(--silver);}

.filter-toggle-btn{display:none;}
.filter-extra{display:block;}

.shop-grid-area{padding:3rem 3.5rem;}
.shop-toolbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;}
.shop-count{font-size:0.72rem;letter-spacing:0.1em;color:var(--silver);}
.sort-select{border:0.5px solid rgba(42,42,40,0.2);padding:0.4rem 0.8rem;font-size:0.7rem;font-family:'Jost',sans-serif;background:var(--cream);cursor:pointer;outline:none;color:var(--charcoal);}
.shop-products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;}
.no-results{grid-column:1/-1;text-align:center;padding:4rem;color:var(--silver);font-size:0.85rem;letter-spacing:0.1em;}

/* ══════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════ */
.pdp-breadcrumb{padding:1.5rem 4.5rem;font-size:0.65rem;letter-spacing:0.12em;color:var(--silver);border-bottom:0.5px solid rgba(42,42,40,0.06);}
.pdp-breadcrumb a{color:var(--silver);text-decoration:none;transition:color 0.2s;}
.pdp-breadcrumb a:hover{color:var(--terracotta);}
.pdp-breadcrumb span{margin:0 0.5rem;}

.pdp-layout{display:grid;grid-template-columns:1fr 1fr;min-height:75vh;padding:0 4.5rem 5rem;}
.pdp-gallery{padding-top:3rem;display:flex;flex-direction:column;gap:1rem;}
.pdp-main-img{height:500px;display:flex;align-items:center;justify-content:center;position:relative;background:var(--cream-dark);}
.pdp-thumbs{display:flex;gap:0.7rem;}
.pdp-thumb{width:80px;height:80px;cursor:pointer;border:2px solid transparent;transition:border-color 0.2s;display:flex;align-items:center;justify-content:center;background:var(--cream-dark);}
.pdp-thumb.active{border-color:var(--terracotta);}

.pdp-info{padding:3rem 0 3rem 5rem;display:flex;flex-direction:column;justify-content:center;}
.pdp-category{font-size:0.6rem;letter-spacing:0.3em;text-transform:uppercase;color:var(--terracotta);margin-bottom:1rem;}
.pdp-name{font-family:'Cormorant Garamond',serif;font-size:3rem;font-weight:300;line-height:1.1;margin-bottom:1rem;}
.pdp-price{font-size:1.6rem;font-weight:500;color:var(--terracotta);margin-bottom:2rem;font-family:'Jost',sans-serif;}
.pdp-divider{height:0.5px;background:rgba(42,42,40,0.1);margin-bottom:2rem;}
.pdp-meta{display:grid;grid-template-columns:1fr 1fr;gap:1rem 2rem;margin-bottom:2rem;}
.pdp-meta-item{;}
.pdp-meta-label{font-size:0.58rem;letter-spacing:0.22em;text-transform:uppercase;color:var(--silver);margin-bottom:0.3rem;}
.pdp-meta-val{font-size:0.82rem;color:var(--charcoal);}
.pdp-desc{font-size:0.88rem;line-height:1.9;color:rgba(42,42,40,0.7);margin-bottom:2rem;}
.pdp-features{list-style:none;margin-bottom:2.5rem;display:flex;flex-direction:column;gap:0.5rem;}
.pdp-features li{font-size:0.78rem;color:var(--charcoal);display:flex;align-items:center;gap:0.6rem;}
.pdp-features li::before{content:'';width:4px;height:4px;background:var(--terracotta);border-radius:50%;flex-shrink:0;}
.pdp-qty{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem;}
.pdp-qty-label{font-size:0.6rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--silver);}
.qty-ctrl{display:flex;align-items:center;border:0.5px solid rgba(42,42,40,0.2);}
.qty-btn{width:36px;height:36px;background:none;border:none;cursor:pointer;font-size:1.1rem;display:flex;align-items:center;justify-content:center;transition:background 0.2s;}
.qty-btn:hover{background:var(--cream-dark);}
.qty-val{width:40px;text-align:center;font-size:0.82rem;}
.pdp-actions{display:flex;gap:1rem;margin-bottom:2rem;}
.pdp-add{flex:1;padding:1rem;background:var(--charcoal);color:var(--cream);border:none;cursor:pointer;font-family:'Jost',sans-serif;font-size:0.72rem;letter-spacing:0.2em;text-transform:uppercase;transition:background 0.25s;}
.pdp-add:hover{background:var(--terracotta);}
.pdp-wa{flex:1;padding:1rem;background:#25D366;color:white;border:none;cursor:pointer;font-family:'Jost',sans-serif;font-size:0.72rem;letter-spacing:0.18em;text-transform:uppercase;display:flex;align-items:center;justify-content:center;gap:0.5rem;transition:opacity 0.2s;}
.pdp-wa:hover{opacity:0.88;}
.pdp-guarantee{display:flex;gap:2rem;padding-top:1.5rem;border-top:0.5px solid rgba(42,42,40,0.08);}
.guarantee-item{display:flex;align-items:center;gap:0.5rem;font-size:0.65rem;color:var(--silver);letter-spacing:0.08em;}

.pdp-related{padding:4rem 4.5rem;background:var(--cream-dark);}

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.about-hero{display:grid;grid-template-columns:1fr 1fr;min-height:70vh;}
.about-hero-l{padding:6rem 4.5rem;display:flex;flex-direction:column;justify-content:center;animation:fadeUp 1s ease both;}
.about-pre{font-size:0.62rem;letter-spacing:0.3em;text-transform:uppercase;color:var(--terracotta);margin-bottom:1.5rem;}
.about-title{font-family:'Cormorant Garamond',serif;font-size:5rem;font-weight:300;line-height:1;margin-bottom:2rem;}
.about-lead{font-size:1rem;line-height:1.9;color:rgba(42,42,40,0.65);max-width:420px;}
.about-hero-r{background:var(--charcoal);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;}
.about-hero-r .sr-big{font-family:'Cormorant Garamond',serif;font-size:12rem;font-weight:300;color:rgba(248,244,238,0.05);line-height:1;}
.about-hero-r .story-circle{width:300px;height:300px;}
.about-hero-r .story-circle2{width:420px;height:420px;}

.values{padding:6rem 4.5rem;background:var(--cream-dark);}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:3rem;}
.value-card{padding:2.5rem;background:var(--cream);}
.value-icon{font-size:1.8rem;margin-bottom:1rem;}
.value-title{font-family:'Cormorant Garamond',serif;font-size:1.5rem;font-weight:300;margin-bottom:0.8rem;}
.value-text{font-size:0.82rem;line-height:1.8;color:rgba(42,42,40,0.6);}

.about-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:0;background:var(--charcoal);}
.about-stat{padding:4rem;text-align:center;border-right:0.5px solid rgba(248,244,238,0.08);}
.about-stat:last-child{border-right:none;}
.about-stat-n{font-family:'Cormorant Garamond',serif;font-size:3.5rem;font-weight:300;color:var(--terracotta);display:block;margin-bottom:0.5rem;}
.about-stat-l{font-size:0.62rem;letter-spacing:0.25em;text-transform:uppercase;color:rgba(248,244,238,0.4);}

.about-founders{padding:6rem 4.5rem;}
.founders-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-top:3rem;}
.founder-card{display:grid;grid-template-columns:180px 1fr;gap:2rem;padding:2.5rem;background:var(--cream-dark);}
.founder-portrait{height:180px;display:flex;align-items:center;justify-content:center;position:relative;}
.founder-info{display:flex;flex-direction:column;justify-content:center;}
.founder-name{font-family:'Cormorant Garamond',serif;font-size:1.8rem;font-weight:300;margin-bottom:0.2rem;}
.founder-role{font-size:0.6rem;letter-spacing:0.22em;text-transform:uppercase;color:var(--terracotta);margin-bottom:1rem;}
.founder-bio{font-size:0.82rem;line-height:1.8;color:rgba(42,42,40,0.65);}

/* Founder portrait CSS art */
.portrait-a{position:relative;width:100px;height:120px;}
.pa-body{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:70px;height:80px;background:#C4623A;border-radius:35px 35px 10px 10px;}
.pa-head{position:absolute;bottom:72px;left:50%;transform:translateX(-50%);width:48px;height:52px;background:#D4884A;border-radius:50%;}
.pa-hair{position:absolute;bottom:112px;left:50%;transform:translateX(-50%);width:52px;height:20px;background:#2A2A28;border-radius:26px 26px 0 0;}

.portrait-b{position:relative;width:100px;height:120px;}
.pb-body{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:70px;height:80px;background:#1E2D4A;border-radius:35px 35px 10px 10px;}
.pb-head{position:absolute;bottom:72px;left:50%;transform:translateX(-50%);width:48px;height:52px;background:#D4A882;border-radius:50%;}
.pb-hair{position:absolute;bottom:112px;left:50%;transform:translateX(-50%);width:52px;height:14px;background:#2A2A28;border-radius:26px 26px 0 0;}

/* ══════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════ */
.cart-hero{padding:4rem 4.5rem 2rem;}
.cart-hero h1{font-family:'Cormorant Garamond',serif;font-size:3rem;font-weight:300;}
.cart-layout{display:grid;grid-template-columns:1fr 360px;gap:3rem;padding:2rem 4.5rem 5rem;align-items:start;}
.cart-empty{text-align:center;padding:6rem;color:var(--silver);}
.cart-empty-icon{font-size:3rem;margin-bottom:1.5rem;}
.cart-empty p{font-size:0.88rem;letter-spacing:0.1em;margin-bottom:2rem;}
.cart-items{display:flex;flex-direction:column;gap:0;}
.cart-item{display:grid;grid-template-columns:100px 1fr auto;gap:1.5rem;padding:1.5rem 0;border-bottom:0.5px solid rgba(42,42,40,0.08);align-items:center;}
.cart-item-art{width:100px;height:100px;display:flex;align-items:center;justify-content:center;background:var(--cream-dark);transform:scale(0.55);}
.cart-item-info{display:flex;flex-direction:column;gap:0.3rem;}
.cart-item-name{font-family:'Cormorant Garamond',serif;font-size:1.2rem;font-weight:400;}
.cart-item-mat{font-size:0.6rem;letter-spacing:0.12em;text-transform:uppercase;color:var(--silver);}
.cart-item-price{font-size:0.9rem;color:var(--terracotta);font-weight:500;}
.cart-item-right{display:flex;flex-direction:column;align-items:flex-end;gap:0.8rem;}
.cart-item-remove{background:none;border:none;cursor:pointer;font-size:0.65rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--silver);transition:color 0.2s;}
.cart-item-remove:hover{color:var(--terracotta);}

.cart-summary{background:var(--cream-dark);padding:2.5rem;position:sticky;top:100px;}
.summary-title{font-family:'Cormorant Garamond',serif;font-size:1.5rem;font-weight:300;margin-bottom:2rem;}
.summary-row{display:flex;justify-content:space-between;align-items:center;font-size:0.8rem;margin-bottom:1rem;color:rgba(42,42,40,0.7);}
.summary-row.total{border-top:0.5px solid rgba(42,42,40,0.12);padding-top:1rem;font-size:0.95rem;font-weight:500;color:var(--charcoal);}
.summary-row.total .total-price{color:var(--terracotta);font-size:1.1rem;}
.summary-note{font-size:0.62rem;letter-spacing:0.08em;color:var(--silver);margin-bottom:2rem;line-height:1.6;}
.checkout-btn{width:100%;padding:1.1rem;background:var(--charcoal);color:var(--cream);border:none;cursor:pointer;font-family:'Jost',sans-serif;font-size:0.72rem;letter-spacing:0.22em;text-transform:uppercase;transition:background 0.25s;margin-bottom:1rem;}
.checkout-btn:hover{background:var(--terracotta);}
.checkout-wa{width:100%;padding:1rem;background:#25D366;color:white;border:none;cursor:pointer;font-family:'Jost',sans-serif;font-size:0.7rem;letter-spacing:0.18em;text-transform:uppercase;display:flex;align-items:center;justify-content:center;gap:0.5rem;transition:opacity 0.2s;}
.checkout-wa:hover{opacity:0.88;}

/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */
.contact-layout{display:grid;grid-template-columns:1fr 1fr;min-height:80vh;}
.contact-l{padding:6rem 4.5rem;display:flex;flex-direction:column;justify-content:center;}
.contact-pre{font-size:0.6rem;letter-spacing:0.3em;text-transform:uppercase;color:var(--terracotta);margin-bottom:1.5rem;}
.contact-title{font-family:'Cormorant Garamond',serif;font-size:4rem;font-weight:300;line-height:1.1;margin-bottom:2rem;}
.contact-info{display:flex;flex-direction:column;gap:1.5rem;margin-bottom:3rem;}
.contact-info-item{display:flex;align-items:flex-start;gap:1rem;}
.ci-icon{font-size:1.1rem;margin-top:0.1rem;}
.ci-label{font-size:0.58rem;letter-spacing:0.22em;text-transform:uppercase;color:var(--silver);margin-bottom:0.2rem;}
.ci-val{font-size:0.85rem;color:var(--charcoal);}
.contact-wa-big{display:flex;align-items:center;gap:1rem;background:#25D366;color:white;padding:1.2rem 2rem;font-family:'Jost',sans-serif;font-size:0.8rem;letter-spacing:0.18em;text-transform:uppercase;border:none;cursor:pointer;width:fit-content;transition:opacity 0.2s;text-decoration:none;}
.contact-wa-big:hover{opacity:0.88;}

.contact-r{background:var(--cream-dark);padding:6rem 4.5rem;display:flex;flex-direction:column;justify-content:center;}
.contact-form-title{font-family:'Cormorant Garamond',serif;font-size:2rem;font-weight:300;margin-bottom:2.5rem;}
.form-group{margin-bottom:1.2rem;}
.form-group label{font-size:0.58rem;letter-spacing:0.22em;text-transform:uppercase;color:var(--silver);display:block;margin-bottom:0.5rem;}
.form-group input,.form-group textarea,.form-group select{
  width:100%;padding:0.9rem 1.1rem;
  border:0.5px solid rgba(42,42,40,0.2);
  background:var(--cream);font-family:'Jost',sans-serif;font-size:0.82rem;
  outline:none;color:var(--charcoal);transition:border-color 0.2s;
}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--terracotta);}
.form-group textarea{resize:vertical;min-height:120px;}
.form-submit{width:100%;padding:1.1rem;background:var(--charcoal);color:var(--cream);border:none;cursor:pointer;font-family:'Jost',sans-serif;font-size:0.72rem;letter-spacing:0.22em;text-transform:uppercase;margin-top:0.5rem;transition:background 0.25s;}
.form-submit:hover{background:var(--terracotta);}
.form-success{display:none;padding:1rem;background:rgba(74,94,58,0.1);border:0.5px solid var(--olive);font-size:0.78rem;color:var(--olive);letter-spacing:0.08em;text-align:center;margin-top:1rem;}

/* ══════════════════════════════════════════
   PAGE HEADER (reusable)
   ══════════════════════════════════════════ */
.page-header{padding:5rem 4.5rem 4rem;border-bottom:0.5px solid rgba(42,42,40,0.06);}
.page-header-pre{font-size:0.6rem;letter-spacing:0.3em;text-transform:uppercase;color:var(--terracotta);margin-bottom:1rem;}
.page-header h1{font-family:'Cormorant Garamond',serif;font-size:4rem;font-weight:300;}

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes spin{from{transform:rotate(0deg);}to{transform:rotate(360deg);}}
@keyframes fadeUp{from{opacity:0;transform:translateY(40px);}to{opacity:1;transform:translateY(0);}}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 900px
   ══════════════════════════════════════════ */
@media(max-width:900px){
  nav{padding:1.2rem 2rem;}
  .nav-links{display:none;}
  .nav-cta{display:none;}
  .hamburger{display:flex;}

  .hero{grid-template-columns:1fr;min-height:auto;}
  .hero-left{padding:3.5rem 2rem 2.5rem;}
  .hero-title{font-size:6rem;}
  .hero-right{min-height:380px;}

  .categories{padding:4rem 2rem;}
  .cat-grid{grid-template-columns:1fr 1fr;grid-template-rows:220px 220px;height:auto;}

  .products{padding:3rem 2rem 4rem;}
  .products-grid{grid-template-columns:1fr 1fr;gap:1rem;}

  .brand-story{grid-template-columns:1fr;}
  .story-r{min-height:220px;}

  .instagram{padding:4rem 2rem;}
  .insta-grid{grid-template-columns:repeat(3,1fr);}

  .newsletter{flex-direction:column;padding:4rem 2rem;gap:2rem;}
  .nl-right{width:100%;}

  footer{padding:4rem 2rem 2rem;}
  .footer-top{grid-template-columns:1fr 1fr;gap:2.5rem;}
  .footer-bottom{flex-direction:column;gap:0.8rem;text-align:center;}

  .shop-hero{padding:4rem 2rem 2rem;}
  .shop-body{grid-template-columns:1fr;}
  .filter-sidebar{position:static;padding:1rem 2rem;border-right:none;border-bottom:0.5px solid rgba(42,42,40,0.08);}
  .filter-group{margin-bottom:1.2rem;}
  .filter-label{margin-bottom:0.6rem;}
  .filter-options{flex-direction:row;flex-wrap:wrap;gap:0.4rem;}
  .filter-btn{border:0.5px solid rgba(42,42,40,0.2);padding:0.3rem 0.8rem;border-radius:0;}
  .filter-btn.active{background:var(--charcoal);color:var(--cream);border-color:var(--charcoal);}
  .filter-extra{display:none;}
  .filter-toggle-btn{display:flex;align-items:center;gap:0.4rem;font-size:0.62rem;letter-spacing:0.18em;text-transform:uppercase;background:none;border:0.5px solid rgba(42,42,40,0.2);padding:0.35rem 1rem;cursor:pointer;font-family:'Jost',sans-serif;color:var(--charcoal);margin-top:0.5rem;}
  .filter-extra.open{display:block;}
  .shop-grid-area{padding:2rem;}
  .shop-products-grid{grid-template-columns:1fr 1fr;}

  .pdp-breadcrumb{padding:1.5rem 2rem;}
  .pdp-layout{grid-template-columns:1fr;padding:0 2rem 4rem;}
  .pdp-info{padding:2rem 0 0;}
  .pdp-name{font-size:2.2rem;}

  .about-hero{grid-template-columns:1fr;}
  .about-hero-l{padding:4rem 2rem;}
  .about-hero-r{min-height:250px;}
  .about-title{font-size:3.5rem;}
  .values{padding:4rem 2rem;}
  .values-grid{grid-template-columns:1fr;}
  .about-stats{grid-template-columns:1fr 1fr;}
  .about-stat{border-right:none;border-bottom:0.5px solid rgba(248,244,238,0.08);}
  .about-founders{padding:4rem 2rem;}
  .founders-grid{grid-template-columns:1fr;}
  .founder-card{grid-template-columns:1fr;}

  .cart-hero{padding:3rem 2rem 1.5rem;}
  .cart-layout{grid-template-columns:1fr;padding:1.5rem 2rem 4rem;}
  .cart-summary{position:static;}

  .contact-layout{grid-template-columns:1fr;}
  .contact-l{padding:4rem 2rem;}
  .contact-r{padding:4rem 2rem;}
  .contact-title{font-size:3rem;}
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 540px
   ══════════════════════════════════════════ */
@media(max-width:540px){
  nav{padding:1rem 1.3rem;}
  .logo-mod{display:none;}

  .hero-left{padding:2.5rem 1.3rem 2rem;}
  .hero-title{font-size:4.8rem;}
  .hero-subtitle{font-size:0.8rem;letter-spacing:0.4em;}
  .hero-eyebrow{font-size:0.55rem;}
  .hero-tagline{font-size:1rem;max-width:100%;}
  .hero-actions{flex-direction:column;gap:0.8rem;align-items:flex-start;}
  .btn-fill,.btn-ghost{width:100%;text-align:center;padding:0.9rem 1.5rem;}
  .hero-right{min-height:400px;}
  .hero-badge{width:68px;height:68px;font-size:0.42rem;top:1rem;right:1rem;}
  .sculpt{transform:scale(0.82);transform-origin:center center;}

  .categories{padding:3rem 1.3rem;}
  .sec-title{font-size:2rem;}
  .cat-grid{grid-template-columns:1fr 1fr;grid-template-rows:160px 160px;gap:0.7rem;}
  .cat-pill{font-size:0.55rem;padding:0.4rem 0.8rem;}

  .products{padding:2.5rem 1.3rem 3rem;}
  .products-grid{grid-template-columns:1fr 1fr;gap:0.8rem;}
  .prod-img{height:190px;}
  .prod-name{font-size:0.92rem;}
  .prod-mat{font-size:0.55rem;}
  .prod-price{font-size:0.82rem;}
  .prod-btn{font-size:0.52rem;padding:0.38rem 0.65rem;}

  .brand-story{grid-template-columns:1fr;}
  .story-l{padding:3.5rem 1.3rem;}
  .story-quote{font-size:1.8rem;}
  .story-stat{gap:1.5rem;}
  .stat-n{font-size:1.8rem;}
  .story-r{min-height:180px;}

  .instagram{padding:3rem 1.3rem;}
  .insta-title{font-size:1.7rem;}
  .insta-grid{grid-template-columns:repeat(3,1fr);gap:0.3rem;}

  .newsletter{padding:3rem 1.3rem;gap:1.5rem;}
  .nl-title{font-size:1.6rem;}
  .nl-right{flex-direction:column;gap:0;}
  .nl-input{width:100%;}
  .nl-btn{width:100%;padding:0.9rem;}

  footer{padding:3rem 1.3rem 1.5rem;}
  .footer-top{grid-template-columns:1fr;gap:2rem;}
  .footer-logo{font-size:1.5rem;}
  .footer-bottom{flex-direction:column;gap:0.6rem;text-align:center;font-size:0.6rem;}
  .footer-bottom span:last-child{display:none;}
  .ticker .tick-item{padding:0 1.5rem;font-size:0.58rem;}

  .shop-hero{padding:3rem 1.3rem 1.5rem;}
  .shop-hero h1{font-size:2.5rem;}
  .shop-grid-area{padding:1.5rem 1.3rem;}
  .shop-products-grid{grid-template-columns:1fr 1fr;gap:0.8rem;}

  .pdp-breadcrumb{padding:1rem 1.3rem;}
  .pdp-layout{padding:0 1.3rem 3rem;}
  .pdp-main-img{height:320px;}
  .pdp-name{font-size:1.8rem;}
  .pdp-actions{flex-direction:column;}
  .pdp-meta{grid-template-columns:1fr;}

  .about-hero-l{padding:3rem 1.3rem;}
  .about-title{font-size:2.8rem;}
  .values{padding:3rem 1.3rem;}
  .about-stats{grid-template-columns:1fr 1fr;}
  .about-stat{padding:2.5rem 1.5rem;}
  .about-stat-n{font-size:2.5rem;}
  .about-founders{padding:3rem 1.3rem;}
  .founder-card{grid-template-columns:1fr;gap:1rem;}

  .cart-hero{padding:2.5rem 1.3rem 1rem;}
  .cart-layout{padding:1rem 1.3rem 3rem;}
  .cart-item{grid-template-columns:70px 1fr auto;}
  .cart-item-art{width:70px;height:70px;}

  .contact-l{padding:3rem 1.3rem;}
  .contact-r{padding:3rem 1.3rem;}
  .contact-title{font-size:2.5rem;}
  .page-header{padding:3.5rem 1.3rem 2.5rem;}
  .page-header h1{font-size:2.8rem;}
}

/* ══════════════════════════════════════════
   MODERNIZATION — Enhanced UI
   ══════════════════════════════════════════ */

/* Frosted-glass nav */
nav {
  background: rgba(248,244,238,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Richer product cards */
.prod-card {
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(42,42,40,0.04), 0 4px 16px rgba(42,42,40,0.07);
}
.prod-card:hover {
  box-shadow: 0 8px 32px rgba(42,42,40,0.13);
}

/* Smooth image fill when real photo is used */
.prod-custom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  display: block;
  transition: transform 0.4s ease;
}
.prod-card:hover .prod-custom-img {
  transform: scale(1.04) !important;
}
/* Suppress art-scale hover on cards with a real image */
.prod-card:hover .prod-img:has(.prod-custom-img) > *:not(.prod-custom-img):not(.prod-tag):not(.prod-wish) {
  transform: none;
}

/* Product image area clip */
.prod-img { overflow: hidden; }

/* PDP main image */
.pdp-main-img { overflow: hidden; }
.pdp-main-img .prod-custom-img { height: 100%; transform-origin: center center; }

/* PDP thumb images */
.pdp-thumb { overflow: hidden; }
.pdp-thumb .prod-custom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cart item art */
.cart-item-art { overflow: hidden; }
.cart-item-art .prod-custom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Smoother section reveals */
.sec-title { letter-spacing: 0.01em; }

/* Improved filter button active state */
.filter-btn {
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

/* Better wishlist button */
.prod-wish {
  transition: opacity 0.2s, transform 0.2s, color 0.2s;
}
.prod-wish:hover { transform: scale(1.15); }
.prod-wish.active { color: var(--terracotta); opacity: 1; }

/* Refined cart badge */
.cart-badge {
  box-shadow: 0 1px 4px rgba(196,98,58,0.4);
}

/* Smooth add-to-cart button */
.prod-btn {
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

/* Shop hero search input modern style */
#search-input {
  border-radius: 1px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#search-input:focus {
  border-color: rgba(42,42,40,0.5) !important;
  box-shadow: 0 0 0 2px rgba(196,98,58,0.08);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }

.prod-card.reveal { transition-delay: 0.05s; }
.prod-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.prod-card.reveal:nth-child(3) { transition-delay: 0.18s; }
.prod-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.cat-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.cat-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.cat-card.reveal:nth-child(4) { transition-delay: 0.24s; }

/* Disable reveal for accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── REFINED PRIMARY BUTTON ── */
.btn-fill {
  position: relative;
  overflow: hidden;
}
.btn-fill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--amber) 100%);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: -1;
}
.btn-fill:hover::before { opacity: 1; }
.btn-fill { transition: color 0.2s, transform 0.2s, box-shadow 0.2s; }
.btn-fill:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,98,58,0.25); }

/* ── REFINED CHECKOUT/WA BUTTON ── */
.checkout-wa, .pdp-wa, .contact-wa-big {
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s !important;
}
.checkout-wa:hover, .pdp-wa:hover, .contact-wa-big:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ── ACTIVE WISHLIST HEART (swap outlined for filled) ── */
.prod-wish { position: relative; }
.prod-wish.active { color: transparent; }
.prod-wish.active::after {
  content: '♥';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--terracotta);
}

/* ── SUBTLE NAV SCROLL SHADOW ── */
nav { transition: box-shadow 0.3s, background 0.3s; }
body.scrolled nav { box-shadow: 0 4px 24px rgba(42,42,40,0.06); }

/* ── ADMIN-ENTRY HINT IN FOOTER ── */
.footer-bottom a[href="admin.html"] { color: var(--silver); opacity: 0.6; }
.footer-bottom a[href="admin.html"]:hover { color: var(--terracotta); opacity: 1; }

/* ══════════════════════════════════════════
   WAVE 1 — Foundations & Quick Wins
   ══════════════════════════════════════════ */

/* ── FLOATING WHATSAPP PILL ── */
.wa-pill {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.42), 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: waPulse 2.6s ease-out 1.2s 2;
}
.wa-pill:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.42), 0 2px 8px rgba(0,0,0,0.12), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,0.42), 0 2px 8px rgba(0,0,0,0.12), 0 0 0 14px rgba(37,211,102,0); }
}
@media (max-width: 540px) { .wa-pill { right: 0.9rem; bottom: 0.9rem; width: 48px; height: 48px; } }

/* ── TRUST STRIP ── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(42,42,40,0.08);
  border-top: 0.5px solid rgba(42,42,40,0.12);
  border-bottom: 0.5px solid rgba(42,42,40,0.12);
}
.trust-cell {
  background: var(--cream);
  padding: 1.4rem 1rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-align: center;
}
.trust-icon {
  width: 22px; height: 22px;
  color: var(--terracotta);
  flex-shrink: 0;
}
.trust-cell-label { font-weight: 400; }
.trust-cell-sub { font-size: 0.6rem; color: var(--silver); letter-spacing: 0.08em; text-transform: none; margin-top: 0.15rem; }
.trust-cell-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.3; }
@media (max-width: 900px) { .trust-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .trust-cell { padding: 1rem 0.7rem; font-size: 0.62rem; } }

/* ── COD BADGE ── */
.cod-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(74,94,58,0.08);
  color: var(--olive);
  padding: 0.3rem 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 20px;
  border: 0.5px solid rgba(74,94,58,0.2);
}
.cod-badge::before { content: '✓'; font-size: 0.8rem; }

/* ── STOCK URGENCY ── */
.stock-urgency {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  margin-top: 0.6rem;
}
.stock-urgency::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta);
  animation: stockBlink 2s ease-in-out infinite;
}
@keyframes stockBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.prod-card .stock-urgency { font-size: 0.62rem; margin-top: 0.4rem; }

/* ── SCALE SILHOUETTE ── */
.scale-silhouette {
  display: flex; align-items: flex-end; gap: 1rem;
  padding: 1rem 0;
  margin: 1rem 0;
  border-top: 0.5px solid rgba(42,42,40,0.1);
  border-bottom: 0.5px solid rgba(42,42,40,0.1);
}
.silhouette-figure {
  position: relative;
  width: 28px;
  height: 110px;
  flex-shrink: 0;
}
.silhouette-figure svg { width: 100%; height: 100%; color: var(--silver); }
.silhouette-piece {
  position: relative;
  background: rgba(196,98,58,0.15);
  border: 1px solid var(--terracotta);
  width: 36px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  color: var(--terracotta);
  letter-spacing: 0.04em;
  border-radius: 2px;
}
.scale-meta {
  font-size: 0.68rem;
  color: var(--silver);
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.scale-meta strong { color: var(--charcoal); display: block; font-weight: 400; font-size: 0.78rem; letter-spacing: 0.04em; margin-bottom: 0.2rem; }

/* ── RECENTLY VIEWED ── */
#recently-viewed {
  padding: 4rem 4.5rem 3rem;
  background: var(--cream);
}
#recently-viewed .sec-header { margin-bottom: 1.6rem; }
.rv-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.rv-card {
  display: block;
  text-decoration: none;
  color: var(--charcoal);
  transition: transform 0.25s;
}
.rv-card:hover { transform: translateY(-3px); }
.rv-img {
  aspect-ratio: 1;
  margin-bottom: 0.6rem;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.rv-img > * { transform: scale(0.55); }
.rv-img .prod-custom-img { transform: none; width: 100%; height: 100%; object-fit: cover; }
.rv-name { font-size: 0.72rem; line-height: 1.3; margin-bottom: 0.2rem; }
.rv-price { font-size: 0.68rem; color: var(--terracotta); }
@media (max-width: 1100px) { .rv-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px) { .rv-grid { grid-template-columns: repeat(3, 1fr); } #recently-viewed { padding: 2.5rem 1.3rem; } }
@media (max-width: 480px) { .rv-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── BLUR-UP IMAGES ── */
.prod-custom-img.loading { filter: blur(8px); transform: scale(1.04); transition: filter 0.6s, transform 0.6s; }
.prod-custom-img.loaded { filter: blur(0); transform: scale(1); }

/* ── PDP CAROUSEL ARROWS ── */
.pdp-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px;
  background: rgba(248,244,238,0.9);
  border: 0.5px solid rgba(42,42,40,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem; color: var(--charcoal);
  font-family: 'Cormorant Garamond', serif;
  z-index: 5;
  transition: background 0.2s, transform 0.2s;
}
.pdp-arrow:hover { background: var(--cream); transform: translateY(-50%) scale(1.08); }
.pdp-arrow-l { left: 1rem; }
.pdp-arrow-r { right: 1rem; }
.pdp-thumb { cursor: pointer; transition: border-color 0.2s; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── PDP LIGHTBOX ── */
.pdp-lightbox {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.96);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
}
.pdp-lightbox img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  user-select: none;
}
.pdp-lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: transparent; color: white;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.pdp-lb-close:hover { background: rgba(255,255,255,0.1); }
.pdp-lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: transparent; color: white;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  font-size: 1.6rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
}
.pdp-lb-arrow:hover { background: rgba(255,255,255,0.1); }
.pdp-lb-arrow-l { left: 2rem; }
.pdp-lb-arrow-r { right: 2rem; }
@media (max-width: 540px) {
  .pdp-lb-close { top: 1rem; right: 1rem; width: 36px; height: 36px; }
  .pdp-lb-arrow { width: 38px; height: 38px; }
  .pdp-lb-arrow-l { left: 0.5rem; }
  .pdp-lb-arrow-r { right: 0.5rem; }
}

/* ── CALL LINK ── */
.call-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
}
.call-link:hover { color: var(--terracotta); }

/* ══════════════════════════════════════════
   CHECKOUT MODAL (Order Security Layer)
   ══════════════════════════════════════════ */
.checkout-modal {
  position: fixed; inset: 0;
  background: rgba(42,42,40,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 1000;
  padding: 1rem;
  overflow-y: auto;
}
.checkout-modal.open { display: flex; }
.checkout-card {
  background: var(--cream);
  width: min(540px, 100%);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(42,42,40,0.18);
}
.checkout-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: transparent; border: 0.5px solid rgba(42,42,40,0.15);
  border-radius: 50%;
  font-size: 1.2rem; color: var(--charcoal);
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.checkout-close:hover { background: rgba(42,42,40,0.06); }
.checkout-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
}
.checkout-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.checkout-sub {
  font-size: 0.78rem;
  color: var(--silver);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.checkout-field {
  display: flex; flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.checkout-field label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 400;
}
.checkout-field label .optional {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.68rem;
  color: var(--silver);
  opacity: 0.8;
}
.checkout-field input,
.checkout-field textarea {
  background: transparent;
  border: 0.5px solid rgba(42,42,40,0.2);
  padding: 0.7rem 0.9rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.checkout-field input:focus,
.checkout-field textarea:focus {
  border-color: var(--terracotta);
}
.checkout-hint {
  font-size: 0.66rem;
  color: var(--silver);
  line-height: 1.6;
  margin: 0.6rem 0 1rem;
}
.checkout-submit {
  width: 100%;
  padding: 1rem;
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.checkout-submit:hover:not(:disabled) {
  background: var(--terracotta);
  transform: translateY(-1px);
}
.checkout-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.checkout-secure {
  text-align: center;
  font-size: 0.62rem;
  color: var(--silver);
  letter-spacing: 0.06em;
  margin-top: 1rem;
}
@media (max-width: 540px) {
  .checkout-card { padding: 2rem 1.3rem 1.5rem; }
  .checkout-title { font-size: 1.6rem; }
  .checkout-row { grid-template-columns: 1fr; }
}
