/* === KadiCréations — Shared design system === */
:root{
  --cream:#FBF6EE;
  --cream-dark:#F1E8D8;
  --rose:#EFD0D0;
  --rose-deep:#D9A6A6;
  --rose-dust:#C68B8B;
  --gold-light:#E8D4A2;
  --gold:#C9A86A;
  --gold-deep:#A8884A;
  --ink:#4A3938;
  --ink-soft:#7A6664;
  --gold-gradient:linear-gradient(135deg,#F4E2B0 0%,#E8CC85 25%,#D4B16A 50%,#F8E8B8 75%,#B89656 100%);
  --gold-shimmer:linear-gradient(135deg,#F8E8B8 0%,#E8CC85 30%,#C9A86A 55%,#F4E2B0 80%,#A8884A 100%);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{background:var(--cream);color:var(--ink);font-family:'Inter',sans-serif;font-weight:400;line-height:1.6}
h1,h2,h3,h4{font-family:'Fraunces',serif;font-weight:500;letter-spacing:-0.01em;line-height:1.15}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font-family:'Inter',sans-serif;cursor:pointer}
.handwritten{font-family:'Caveat',cursive;color:var(--rose-dust)}
.gold-text{background:var(--gold-gradient);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}

/* === SPARKLES === */
@keyframes twinkle{0%,100%{opacity:0;transform:scale(0.2) rotate(0deg)}50%{opacity:1;transform:scale(1) rotate(180deg)}}
.sparkles{position:absolute;inset:0;pointer-events:none;overflow:hidden}
.sparkle{position:absolute;width:10px;height:10px;pointer-events:none;opacity:0;animation:twinkle 3s ease-in-out infinite}
.sparkle::before,.sparkle::after{content:'';position:absolute;background:#fff;box-shadow:0 0 6px rgba(255,255,255,0.9),0 0 12px rgba(248,232,184,0.7);border-radius:50%}
.sparkle::before{top:0;left:50%;width:1.5px;height:100%;transform:translateX(-50%)}
.sparkle::after{top:50%;left:0;height:1.5px;width:100%;transform:translateY(-50%)}
.sparkle.s2{width:7px;height:7px;animation-duration:2.4s;animation-delay:0.6s}
.sparkle.s3{width:13px;height:13px;animation-duration:3.6s;animation-delay:1.2s}
.sparkle.s4{width:6px;height:6px;animation-duration:2.8s;animation-delay:1.8s}
.sparkle.s5{width:9px;height:9px;animation-duration:3.2s;animation-delay:0.3s}
.sparkle.s6{width:8px;height:8px;animation-duration:2.6s;animation-delay:2.1s}
.sparkle.s7{width:11px;height:11px;animation-duration:3.4s;animation-delay:0.9s}
.sparkle.s8{width:5px;height:5px;animation-duration:2.2s;animation-delay:1.5s}

/* === ANNOUNCE === */
.announce{background:var(--ink);color:var(--cream);text-align:center;padding:10px 20px;font-family:'Caveat',cursive;font-size:1.1rem;letter-spacing:0.02em;position:relative;overflow:hidden}
.announce::after{content:'';position:absolute;bottom:0;left:0;right:0;height:1px;background:var(--gold-shimmer)}

/* === HEADER === */
header.site-header{background:var(--cream);padding:18px 40px;position:sticky;top:0;z-index:100;border-bottom:1px solid rgba(74,57,56,0.08);backdrop-filter:blur(10px)}
.nav{display:flex;align-items:center;justify-content:space-between;max-width:1400px;margin:0 auto;gap:30px}
.logo{font-family:'Fraunces',serif;font-style:italic;font-size:1.7rem;font-weight:500;letter-spacing:-0.02em}
.logo span{background:var(--gold-gradient);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.menu{display:flex;gap:30px;list-style:none;font-size:0.9rem;font-weight:500}
.menu a{position:relative;padding:6px 0;transition:color 0.3s}
.menu a::after{content:'';position:absolute;bottom:0;left:50%;right:50%;height:1.5px;background:var(--gold-gradient);transition:all 0.3s}
.menu a:hover{color:var(--gold-deep)}
.menu a:hover::after,.menu a.active::after{left:0;right:0}
.menu a.gift{background:var(--rose);padding:6px 14px;border-radius:50px;font-family:'Caveat',cursive;font-size:1.1rem;color:var(--ink)}
.menu a.gift::after{display:none}
.nav-icons{display:flex;gap:18px;align-items:center}
.nav-icons a{width:38px;height:38px;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:background 0.3s;font-size:1.1rem;position:relative}
.nav-icons a:hover{background:var(--cream-dark)}
.cart-count{position:absolute;top:2px;right:2px;background:var(--gold-gradient);color:#fff;font-size:0.65rem;font-weight:600;width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center}

/* === BUTTONS === */
.btn{display:inline-flex;align-items:center;gap:10px;padding:16px 32px;border-radius:50px;font-size:0.85rem;letter-spacing:0.1em;text-transform:uppercase;font-weight:500;transition:all 0.3s;border:1.5px solid transparent;cursor:pointer;font-family:'Inter',sans-serif}
.btn-primary{background:var(--ink);color:var(--cream);border-color:var(--ink)}
.btn-primary:hover{background:transparent;color:var(--ink);transform:translateY(-2px);box-shadow:0 12px 28px rgba(74,57,56,0.2)}
.btn-secondary{background:transparent;color:var(--ink);border-color:var(--ink-soft)}
.btn-secondary:hover{background:var(--ink);color:var(--cream);transform:translateY(-2px)}
.btn-gold{background:var(--gold-gradient);color:var(--ink);border-color:transparent;font-weight:600}
.btn-gold:hover{transform:translateY(-2px);box-shadow:0 14px 32px rgba(201,168,106,0.4)}
.btn-link{color:var(--ink);font-family:'Caveat',cursive;font-size:1.2rem;text-transform:none;letter-spacing:0;text-decoration:underline;text-decoration-color:var(--gold);text-underline-offset:4px;text-decoration-thickness:2px}

/* === BREADCRUMB === */
.breadcrumb{padding:25px 40px;max-width:1400px;margin:0 auto;font-size:0.85rem;color:var(--ink-soft)}
.breadcrumb a{transition:color 0.3s}
.breadcrumb a:hover{color:var(--gold-deep)}
.breadcrumb .sep{margin:0 10px;color:var(--gold)}
.breadcrumb .current{color:var(--ink);font-weight:500}

/* === SECTION HEAD === */
.section-tag{font-family:'Caveat',cursive;color:var(--rose-dust);font-size:1.4rem;margin-bottom:8px;display:block}
.section-title{font-size:clamp(2rem,4vw,3rem);font-style:italic;font-weight:400;margin-bottom:15px}
.section-title em{font-style:normal;background:var(--gold-gradient);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}

/* === PRODUCT CARD === */
.product{background:#fff;border-radius:18px;overflow:hidden;transition:all 0.4s;box-shadow:0 8px 22px rgba(74,57,56,0.05);display:block}
.product:hover{transform:translateY(-6px);box-shadow:0 20px 40px rgba(74,57,56,0.1)}
.product-img{position:relative;aspect-ratio:4/5;background-size:cover;background-position:center;overflow:hidden}
.product-badge{position:absolute;top:14px;left:14px;background:var(--gold-shimmer);color:#fff;padding:5px 14px;border-radius:20px;font-size:0.7rem;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;box-shadow:0 4px 12px rgba(201,168,106,0.3);overflow:hidden}
.product-badge.rose{background:var(--rose-deep)}
.product-wish{position:absolute;top:14px;right:14px;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,0.9);display:flex;align-items:center;justify-content:center;font-size:1rem;cursor:pointer;backdrop-filter:blur(8px);transition:all 0.3s;border:none}
.product-wish:hover{background:#fff;transform:scale(1.1)}
.product-info{padding:22px}
.product-cat{font-family:'Caveat',cursive;color:var(--rose-dust);font-size:1rem;margin-bottom:2px}
.product-name{font-family:'Fraunces',serif;font-size:1.2rem;font-style:italic;margin-bottom:8px}
.product-meta{display:flex;justify-content:space-between;align-items:center}
.product-price{font-weight:600;font-size:1rem}
.product-rating{font-size:0.8rem;color:var(--ink-soft);display:flex;gap:3px;align-items:center}
.product-stars{color:var(--gold)}

/* === FOOTER === */
footer.site-footer{background:var(--ink);color:var(--cream);padding:70px 40px 30px;position:relative}
footer.site-footer::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:var(--gold-shimmer)}
.footer-inner{max-width:1400px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:50px;margin-bottom:50px}
.footer-brand h3{font-size:2rem;font-style:italic;margin-bottom:15px;background:var(--gold-shimmer);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.footer-brand p{color:rgba(251,246,238,0.65);font-size:0.9rem;margin-bottom:20px;max-width:340px}
.socials{display:flex;gap:12px}
.socials a{width:40px;height:40px;border-radius:50%;border:1px solid rgba(251,246,238,0.2);display:flex;align-items:center;justify-content:center;transition:all 0.3s}
.socials a:hover{background:var(--gold);border-color:var(--gold);color:var(--ink)}
.footer-col h4{font-family:'Caveat',cursive;font-style:normal;font-size:1.4rem;margin-bottom:18px;color:var(--gold-light)}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:10px}
.footer-col a{color:rgba(251,246,238,0.7);font-size:0.88rem;transition:color 0.3s}
.footer-col a:hover{color:var(--gold-light)}
.footer-bottom{padding-top:25px;border-top:1px solid rgba(251,246,238,0.1);max-width:1400px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;color:rgba(251,246,238,0.5);font-size:0.8rem;flex-wrap:wrap;gap:15px}
.footer-bottom .sig{font-family:'Caveat',cursive;font-size:1rem;color:var(--rose)}

/* === REASSURANCE STRIP === */
.reassure{background:var(--cream-dark);padding:25px 40px}
.reassure-inner{max-width:1400px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:30px;align-items:center}
.reassure-item{display:flex;align-items:center;gap:14px;font-size:0.85rem}
.reassure-icon{width:38px;height:38px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0}
.reassure-text strong{display:block;font-weight:500;color:var(--ink)}
.reassure-text span{color:var(--ink-soft);font-size:0.78rem}

/* === RESPONSIVE === */
@media(max-width:1024px){
  .menu{display:none}
  .reassure-inner{grid-template-columns:repeat(2,1fr);gap:20px}
  .footer-inner{grid-template-columns:1fr 1fr;gap:30px}
}
@media(max-width:600px){
  header.site-header{padding:14px 20px}
  .logo{font-size:1.4rem}
  .nav-icons a{width:34px;height:34px}
  .footer-inner{grid-template-columns:1fr}
  .reassure-inner{grid-template-columns:1fr 1fr}
  .breadcrumb{padding:15px 20px}
}
