﻿:root{
  --rose:#c62030;
  --rose-dark:#a51321;
  --rose-soft:#fbe8e8;
  --cream:#fff7f3;
  --sand:#f5e7de;
  --ink:#3a2b2b;
  --muted:#7a6d6a;
  --card:#ffffff;
  --shadow:0 12px 30px rgba(73, 32, 32, 0.08);
  --cart-gradient:linear-gradient(135deg,#c92a5a,#e45a84);
  --cart-border:#c92a5a;
  --cart-shadow:0 10px 24px rgba(201,42,90,0.25);
  --fixed-header-offset:104px;
}
*{box-sizing:border-box;
padding:0;margin:0;
}
body{
  margin:0;
  font-family:"Source Sans 3", system-ui, Arial, sans-serif;
  background:
    radial-gradient(1200px 480px at 80% -60%, #ffe9f0 22%, transparent 60%),
    radial-gradient(900px 520px at 10% -30%, #ffeef4 26%, transparent 60%),
    radial-gradient(900px 480px at 50% 120%, #fff3f7 30%, transparent 70%),
    var(--cream);
  color:var(--ink);
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.container{max-width:1180px;margin:0 auto;padding:0 18px}
.container.narrow-mobile{
  width:100%;
  max-width:1180px;
}
.app{
  min-height:100vh;
  max-width:none;
  width:100%;
  margin:0;
  background:transparent;
  box-shadow:none;
  border-radius:0;
  overflow-x:hidden;
}

/* Keep footer at bottom even while content or data loads */
.page-shell{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
.page-shell > main{
  flex:1 0 auto;
  width:100%;
}

.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1200;
  background:#fffaf7;
  border-bottom:1px solid rgba(70, 30, 30, 0.08);
  backdrop-filter: blur(6px);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 0;
}
.brand{display:flex;flex-direction:column;gap:2px}
.logo{
  font-family:"Playfair Display", serif;
  font-size:26px;
  letter-spacing:0.2px;
  color:var(--rose);
}
.logo-img{
  display:block;
  height:63px;
  width:auto;
}
.brand-tag{font-size:13px;color:var(--muted);text-transform:uppercase;letter-spacing:1.2px}
.top-nav{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  font-size:14px;
  color:#5c4a46;
}
.top-nav a{padding:6px 0;border-bottom:2px solid transparent}
.top-nav a:hover{border-color:var(--rose-soft)}
.nav-more{
  position:relative;
  display:flex;
  align-items:center;
}
.nav-more summary{
  list-style:none;
  cursor:pointer;
  padding:6px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:6px;
  color:inherit;
}
.nav-more summary::-webkit-details-marker{display:none;}
.nav-more summary::after{
  content:'\25BE';
  font-size:12px;
  color:#c62030;
  transition:transform .2s ease;
}
.nav-more[open] summary::after{
  transform:rotate(-180deg);
}
.nav-more-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#fffaf7;
  border:1px solid #f1e3df;
  border-radius:10px;
  padding:10px 12px;
  box-shadow:0 8px 18px rgba(0,0,0,0.08);
  display:none;
  min-width:180px;
  z-index:1300;
}
.nav-more[open] .nav-more-menu{display:block;}
.nav-more-menu a{
  display:block;
  padding:6px 4px;
  color:#5c4a46;
  white-space:nowrap;
}
.nav-more-menu a:hover{
  color:var(--rose);
}

/* Mobile nav handled below in a single block */
.top-nav .voucher{
  background:var(--rose);
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  display:flex;
  align-items:center;
  gap:6px;
  box-shadow:0 8px 16px rgba(198, 32, 48, 0.25);
}
.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border:1px solid #edd7cf;
  border-radius:12px;
  background:#fff;
  align-items:center;
  justify-content:center;
  gap:6px;
  flex-direction:column;
  padding:8px 10px;
  cursor:pointer;
  z-index:1001;
  font-size:0;
}
.nav-toggle span{
  display:block;
  width:100%;
  height:2px;
  background:#3a2723;
  border-radius:2px;
  transition:transform .2s ease, opacity .2s ease;
}
.nav-toggle::before{
  content:'\2630';
  font-size:22px;
  line-height:1;
  color:#3a2723;
}
.nav-toggle span{
  display:none;
}
.nav-toggle:focus{outline:2px solid var(--rose-soft);outline-offset:2px;}
body.nav-open{overflow:hidden;}
body.nav-open .nav-toggle::before{
  content:'\2715';
  font-size:20px;
}

.main{padding:28px 0 60px}
.section{margin:38px 0}
.section-title{
  font-family:"Playfair Display", serif;
  font-size:24px;
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:nowrap;
  margin:0 0 20px;
  position:relative;
}
.section-title:before,
.section-title:after{
  content:"";
  display:block;
  flex:0 0 50px;
  width:50px;
  height:1px;
  background:#d9b2a7;
  margin:0;
}

.hero{
  background:linear-gradient(180deg,#fffaf7 0%, #fff5f0 100%);
  border-radius:24px;
  padding:26px;
  box-shadow:var(--shadow);
  margin-top:100px;
}
.hero-soft{
  position:relative;
  overflow:hidden;
  background:linear-gradient(90deg, #ffffff 0%, #eb7a9c 45%, #c52040 100%);
  padding:26px;
  border-radius:28px;
}
.hero-soft::before,
.hero-soft::after{
  content:none;
}
.hero-mobile{
  max-width:640px;
  margin:0 auto;
}
.hero-centered{
  text-align:center;
}
.hero-inner{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}
.hero-centered h1{
  font-family:"Playfair Display", serif;
  font-size:clamp(28px, 7vw, 36px);
  color:#3b2623;
  margin:10px 0 12px;
  line-height:1.2;
}
.hero-centered .eyebrow{
  color:#8b6b66;
  letter-spacing:0.4px;
}
.hero-cta.hero-cta-pill{
  justify-content:flex-start;
  gap:12px;
}
.btn.pill{
  border-radius:999px;
  padding:14px 18px;
  font-weight:700;
  min-width:140px;
}
.btn.primary.pill{
  background:linear-gradient(135deg, #d3203a 0%, #b8162f 100%);
  color:#fff;
  box-shadow:0 10px 26px rgba(179, 30, 54, 0.35);
}
.btn.ghost.pill{
  background:#fff;
  border:1px solid #f1d9d4;
  color:#6a4c45;
}
.hero-cta.hero-cta-pill .btn{
  min-width:0;
  padding-inline:16px;
}
.hero-cats{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px,1fr));
  gap:14px;
}
.hero-cats > .muted{
  grid-column:1 / -1;
  width:100%;
  text-align:center;
  justify-self:center;
}
.hero-cat{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  display:block;
  box-shadow:0 18px 38px rgba(57, 33, 32, 0.12);
}
.hero-cat img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
}
.hero-cat::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(28,16,14,0.45) 100%);
}
.hero-cat-body{
  position:absolute;
  inset:auto 0 0 0;
  padding:16px;
  color:#fff;
  display:flex;
  flex-direction:column;
  gap:4px;
  z-index:1;
}
.hero-cat-body h3{
  margin:0;
  font-size:18px;
}
.hero-cat-body span{
  font-size:14px;
  color:#f7e6e2;
}
.heart-floating{
  position:fixed;
  bottom:-24px;
  width:16px;
  height:16px;
  background:linear-gradient(-45deg, #ff6b81 0%, #ff2f56 100%);
  transform:translateY(0) scale(var(--scale,1)) rotate(45deg);
  border-radius:0 0 6px 0;
  animation:heartFloat var(--dur,8s) linear forwards;
  pointer-events:none;
  z-index:4;
}
.heart-floating::before,
.heart-floating::after{
  content:"";
  position:absolute;
  width:16px;
  height:16px;
  background:inherit;
  border-radius:50%;
}
.heart-floating::before{
  top:-8px;
  left:0;
}
.heart-floating::after{
  left:-8px;
  top:0;
}
@keyframes heartFloat{
  0%{transform:translateY(0) scale(var(--scale,1)) rotate(45deg); opacity:0;}
  10%{opacity:1;}
  90%{opacity:0.8;}
  100%{transform:translateY(-120vh) scale(var(--scale,1)) rotate(45deg); opacity:0;}
}
.hero-stats-wide{
  margin-top:16px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.pill-card{
  background:#fff;
  border:1px solid #f1e3df;
  border-radius:14px;
  padding:10px 12px;
  box-shadow:0 10px 18px rgba(60,22,22,0.08);
}
.hero-inner{display:flex;align-items:center;gap:28px}
.hero-text{flex:1}
.hero-text h1{
  font-family:"Playfair Display", serif;
  font-size:38px;
  margin:8px 0 10px;
  line-height:1.2;
}
.eyebrow{
  font-size:12px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color:var(--rose);
  margin:0;
}
.muted{color:var(--muted);margin:0 0 14px}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin:16px 0}
.btn{
  border:0;
  border-radius:999px;
  padding:10px 18px;
  font-weight:600;
  cursor:pointer;
  background:#f2e7e4;
  color:var(--ink);
}
.btn:disabled{
  opacity:0.55;
  cursor:not-allowed;
  filter:saturate(0.4);
}
.btn.primary{
  background:linear-gradient(90deg, var(--rose), var(--rose-dark));
  color:#fff;
  box-shadow:0 8px 18px rgba(198, 32, 48, 0.28);
}
.btn.cart-pink{
  background:linear-gradient(135deg,#ff5c8d,#e32458);
  color:#fff;
  border:1px solid rgba(227,36,88,0.4);
  box-shadow:0 12px 22px rgba(227,36,88,0.35);
  font-weight:700;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn.cart-pink:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 28px rgba(227,36,88,0.42);
}
.btn.ghost{background:#fff;border:1px solid #e7c9c0}
.btn.small{border-radius:12px;padding:8px 12px}

.hero-media{flex:1}
.hero-media img{
  border-radius:18px;
  width:100%;
  height:320px;
  object-fit:cover;
  box-shadow:0 14px 30px rgba(60, 22, 22, 0.12);
}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px,1fr));
  gap:10px;
  margin-top:14px;
}
.pill-card{
  background:linear-gradient(135deg,#fff9f7 0%, #ffeef2 100%);
  border:1px solid rgba(201,42,90,0.12);
  border-radius:14px;
  padding:12px 14px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  box-shadow:0 10px 22px rgba(58, 34, 28, 0.08);
}
.pill-card.highlight{
  background:linear-gradient(135deg,#ffe6ed,#ffdfe7);
  border-color:rgba(198,32,48,0.22);
  box-shadow:0 12px 26px rgba(198,32,48,0.18);
  transform:translateY(-1px);
}
.pill-card strong{font-size:15px;line-height:1.2;}
.pill-card .stat-label{margin-top:2px;}
.pill-card .stat-icon{
  width:34px;
  height:34px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:rgba(201,42,90,0.12);
  color:#c92a5a;
  font-weight:800;
  flex-shrink:0;
}
.stat{
  display:flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg,#fff,#fff6f6);
  padding:10px 12px;
  border-radius:12px;
  box-shadow:0 6px 14px rgba(60, 22, 22, 0.08);
  font-size:14px;
}
.stat-icon{color:var(--rose);font-weight:700}
.stat-label{font-size:12px;color:var(--muted)}

.cats-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:14px;
}
.cat{
  background:var(--card);
  border-radius:14px;
  overflow:hidden;
  text-align:center;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(60, 22, 22, 0.08);
  transition:transform .2s ease;
}
.cat img{height:110px;object-fit:cover;width:100%}
.cat div{padding:10px 8px;font-weight:600}
.cat:hover{transform:translateY(-4px)}

.bestsellers-row{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}
@media(max-width:980px){
  .bestsellers-row{grid-template-columns:repeat(2, minmax(0,1fr))}
}
.b-card{
  position:relative;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  cursor:pointer;
}
.b-card img{height:150px;object-fit:cover;transition:filter .2s ease, opacity .2s ease}
.b-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:var(--rose);
  color:#fff;
  font-size:12px;
  padding:4px 10px;
  border-radius:8px;
}
.b-badge.soldout{
  background:#7a6d6a;
  color:#fff;
}
.b-info{
  padding:14px;
  display:flex;
  flex-direction:column;
  height:100%;
}
.b-info h3{
  margin:0 0 8px;
  font-size:16px;
  font-weight:700;
}
.b-meta{display:flex;justify-content:flex-start;align-items:center;gap:8px;margin-bottom:10px}
.price-now{color:var(--rose);font-weight:700;margin: 10px;}
.price-old{text-decoration:line-through;color:#b9a19a;font-size:12px}
.rating{color:#f5a623;font-size:12px;letter-spacing:1px}
.restock-note{
  font-size:12px;
  color:var(--muted);
  margin-top:6px;
}
.btn.waitlist{
  background:#fff;
  border:1px solid #e7c9c0;
  color:#b8162f;
  font-weight:700;
}
.btn.waitlist:hover{
  border-color:var(--rose);
  box-shadow:0 8px 18px rgba(198,32,48,0.18);
}

.wrap-card{
  background:linear-gradient(180deg,#fffaf7 0%, #fff1eb 100%);
  border-radius:20px;
  padding:20px;
  display:flex;
  align-items:center;
  gap:22px;
  box-shadow:var(--shadow);
}
.wrap-info h2{
  margin:0 0 12px;
  font-family:"Playfair Display", serif;
  font-size:24px;
}
.giftwrap-card{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:22px;
  padding:28px;
  border-radius:22px;
  background:linear-gradient(135deg,#fff7f5 0%, #ffe9ef 50%, #fff7f5 100%);
  box-shadow:0 18px 45px rgba(199, 61, 90, 0.12);
  align-items:center;
  overflow:hidden;
}
.giftwrap-info h2{margin:6px 0 10px;}
.giftwrap-info .muted{margin:0 0 14px;}
.giftwrap-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.note-inline{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.note-input{
  background:#fff;
  border:1px solid #f2d5d0;
  border-radius:14px;
  padding:10px 12px;
  box-shadow:0 10px 24px rgba(60,22,22,0.08);
  width:100%;
  max-width:360px;
}
.note-input input{
  width:100%;
  border:0;
  background:transparent;
  font-size:14px;
  padding:6px 2px;
  outline:none;
  color:var(--ink);
}
.giftwrap-media{
  position:relative;
  justify-self:end;
  width:100%;
  max-width:460px;
}
.giftwrap-media img{
  width:100%;
  border-radius:18px;
  box-shadow:0 18px 38px rgba(40,20,20,0.18);
  object-fit:cover;
}
.giftwrap-badge{
  position:absolute;
  top:12px;
  right:12px;
  background:rgba(255,255,255,0.9);
  color:#c62030;
  font-weight:700;
  padding:6px 12px;
  border-radius:999px;
  box-shadow:0 8px 16px rgba(0,0,0,0.1);
  text-transform:uppercase;
  letter-spacing:0.8px;
  font-size:11px;
}
.gift-emoji{
  display:flex;
  align-items:center;
  justify-content:center;
  background:radial-gradient(circle at 30% 30%, #ffe9f0, #ffd7e3 60%, #fff5f8 100%);
  border-radius:26px;
  height:220px;
  font-size:120px;
  box-shadow:0 18px 38px rgba(40,20,20,0.14), inset 0 1px 0 rgba(255,255,255,0.75);
}

.blog-showcase{
  background:linear-gradient(135deg,#fff8f6 0%, #ffeff4 45%, #fff8f6 100%);
  border:1px solid #f4ddd7;
  border-radius:24px;
  padding:24px;
  box-shadow:0 16px 34px rgba(95, 35, 44, 0.11);
}
.blog-showcase-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.blog-showcase-title{
  margin:6px 0 10px;
  font-family:"Playfair Display", serif;
  font-size:clamp(26px, 3.2vw, 34px);
  line-height:1.15;
}
.blog-showcase-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:16px;
}
.blog-featured-card,
.blog-mini-card{
  background:#fff;
  border:1px solid #f1ddd7;
  border-radius:18px;
  box-shadow:0 12px 28px rgba(72, 25, 33, 0.08);
}
.blog-featured-card{
  overflow:hidden;
}
.blog-featured-media{
  position:relative;
}
.blog-featured-media img{
  width:100%;
  height:250px;
  object-fit:cover;
}
.blog-chip{
  position:absolute;
  top:12px;
  left:12px;
  background:#fff;
  border:1px solid #f2d2ca;
  color:var(--rose);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
  border-radius:999px;
  padding:6px 10px;
}
.blog-featured-body{
  padding:16px 18px 18px;
}
.blog-featured-body h3{
  margin:0 0 8px;
  font-size:24px;
  line-height:1.2;
}
.blog-featured-body p{
  margin:0 0 12px;
  color:var(--muted);
}
.blog-mini-list{
  display:grid;
  gap:12px;
}
.blog-mini-card{
  padding:14px 16px;
}
.blog-mini-card h3{
  margin:0 0 6px;
  font-size:20px;
  line-height:1.2;
}
.blog-mini-card p{
  margin:0 0 10px;
  color:var(--muted);
}
.blog-link{
  color:#b91935;
  font-weight:700;
}

.easter-feature{
  background:linear-gradient(135deg,#fff9f1 0%, #fff4e6 48%, #fff9f4 100%);
  border:1px solid #f1e1cb;
  border-radius:24px;
  padding:24px;
  box-shadow:0 16px 34px rgba(95, 60, 35, 0.10);
}
.easter-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.easter-title{
  margin:6px 0 10px;
  font-family:"Playfair Display", serif;
  font-size:clamp(26px, 3.2vw, 34px);
  line-height:1.12;
}
.easter-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr)) minmax(250px, 0.9fr);
  gap:14px;
}
.easter-card{
  background:#fff;
  border:1px solid #efdfcb;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(72, 44, 25, 0.08);
}
.easter-card img{
  width:100%;
  height:190px;
  object-fit:cover;
}
.easter-card-body{
  padding:14px 15px 16px;
}
.easter-card-body h3{
  margin:0 0 6px;
  font-size:21px;
  line-height:1.2;
}
.easter-card-body p{
  margin:0;
  color:var(--muted);
}
.easter-aside{
  background:linear-gradient(180deg,#fff 0%, #fff4dc 100%);
  border:1px solid #ecd6b5;
  border-radius:18px;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  box-shadow:0 12px 24px rgba(80, 49, 28, 0.10);
}
.easter-aside h3{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:24px;
  line-height:1.2;
}
.easter-aside p{
  margin:0 0 6px;
  color:#6f5b4f;
}
.easter-badge{
  display:inline-flex;
  align-self:flex-start;
  padding:6px 10px;
  border-radius:999px;
  background:#fff;
  border:1px solid #edd8b8;
  color:#9c5f16;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
}

@media (max-width:980px){
  .easter-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .easter-grid{
    grid-template-columns:1fr 1fr;
  }
  .easter-aside{
    grid-column:1 / -1;
  }
  .blog-showcase-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .blog-showcase-grid{
    grid-template-columns:1fr;
  }
  .blog-featured-media img{
    height:210px;
  }
}

@media (max-width:640px){
  .easter-feature{
    border-radius:18px;
    padding:16px;
  }
  .easter-grid{
    grid-template-columns:1fr;
  }
  .easter-card img{
    height:170px;
  }
  .easter-aside h3{
    font-size:20px;
  }
  .blog-showcase{
    border-radius:18px;
    padding:16px;
  }
  .blog-featured-body h3,
  .blog-mini-card h3{
    font-size:18px;
  }
}

.finder{background:#fff;border-radius:20px;padding:18px;box-shadow:var(--shadow)}
.finder-bar{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
}
.finder-bar select,
.finder-bar button{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid #ead6cf;
  background:#fff;
  font-family:inherit;
}

.basket-section{
  padding:4rem 1rem;
  background:#fff9f7;
  border-radius:20px;
  margin:3rem 0;
}
.basket-title{
  text-align:center;
  font-size:clamp(2rem, 3vw, 2.6rem);
  margin-bottom:1.5rem;
}
.basket-grid{
  display:grid;
  grid-template-columns:220px 1fr 320px;
  gap:1.5rem;
  max-width:1400px;
  margin:0 auto;
  align-items:start;
}
.basket-tabs{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.config-tab{
  padding:1rem;
  border:2px solid #ddd;
  border-radius:12px;
  background:#fff;
  cursor:pointer;
  font-weight:700;
  text-align:left;
  transition:border .2s ease, box-shadow .2s ease, transform .1s ease;
}
.config-tab:hover{
  border-color:var(--rose-soft);
  box-shadow:0 6px 16px rgba(198, 32, 48, 0.08);
}
.config-tab.active{
  border-color:var(--rose);
  box-shadow:0 8px 18px rgba(198, 32, 48, 0.14);
  transform:translateY(-1px);
}
.basket-products{
  background:#fff;
  padding:1.5rem;
  border-radius:16px;
  min-height:320px;
  border:1px solid #eee;
  box-shadow:var(--shadow);
}
.basket-placeholder{
  text-align:center;
  padding:2rem;
  color:#666;
}
.basket-cart{
  background:#fff;
  padding:1.5rem;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  border:1px solid #f1e3df;
  position:sticky;
  top:80px;
}
.basket-cart h3{
  margin:0 0 0.5rem;
  font-size:1.3rem;
}
.basket-cart-summary{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:1.05rem;
}
.basket-preview{
  width:100%;
  height:250px;
  background:linear-gradient(135deg, #ffeef2 0%, #fff5f8 100%);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px dashed #ffb6c1;
  margin-bottom:1rem;
  font-size:1.05rem;
  color:#666;
  text-align:center;
  padding:0 12px;
}
.basket-items{
  max-height:160px;
  overflow-y:auto;
  margin-bottom:1rem;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.basket-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.basket-primary{
  width:100%;
  padding:1rem;
  background:#b5363f;
  color:#fff;
  border:none;
  border-radius:12px;
  font-size:1.05rem;
  font-weight:700;
  cursor:not-allowed;
  opacity:0.7;
  transition:opacity .2s ease, transform .1s ease;
}
.basket-primary:not(:disabled){
  cursor:pointer;
  opacity:1;
}
.basket-primary:not(:disabled):active{
  transform:translateY(1px);
}
.basket-secondary{
  width:100%;
  padding:0.85rem;
  background:#f3f4f6;
  color:#666;
  border:1px solid #ddd;
  border-radius:12px;
  cursor:pointer;
}
.basket-clear{
  display:none;
}

.shipping-section{
  background:linear-gradient(135deg, #fff5f4 0%, #fff0f2 40%, #fff9f8 100%);
  padding:40px 0 0;
}
.shipping-inner{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:2.5rem;
  align-items:stretch;
  background:#fff;
  padding:2.5rem;
  border-radius:32px;
  box-shadow:var(--shadow);
}
.shipping-intro h2{
  margin-top:0;
  margin-bottom:0.5rem;
}
.shipping-badges{
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
  margin-top:1rem;
}
.shipping-badges span{
  padding:0.4rem 0.9rem;
  background:#fcf0f1;
  border:1px solid #ffd8df;
  border-radius:999px;
  font-size:0.8rem;
  color:var(--rose);
}
.shipping-form{
  display:grid;
  gap:0.85rem;
}
.shipping-label{
  display:flex;
  flex-direction:column;
  gap:0.35rem;
  font-weight:600;
  font-size:0.9rem;
}
.shipping-form input,
.shipping-form select{
  border:1px solid #f1d9d5;
  border-radius:12px;
  padding:0.75rem 1rem;
  font-size:1rem;
  font-family:inherit;
  background:#fff;
  transition:border .2s ease, box-shadow .2s ease;
}
.shipping-form input:focus,
.shipping-form select:focus{
  border-color:var(--rose);
  outline:none;
  box-shadow:0 0 0 3px rgba(181,54,63,0.15);
}
.shipping-status{
  font-size:0.85rem;
  color:#8a5d55;
  padding:0.65rem 0.9rem;
  border-radius:12px;
  background:#fff6f5;
  border:1px dashed rgba(181,54,63,0.35);
}
.shipping-form button{
  margin-top:0.5rem;
}

.contact-section{
  background:linear-gradient(180deg,#fff7f5 0%, #fff1ec 100%);
  padding:3rem 0;
}
.contact-inner{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:2.5rem;
  background:#fff;
  padding:2.5rem;
  border-radius:32px;
  border:1px solid rgba(198,32,48,0.16);
  box-shadow:0 22px 60px rgba(198,32,48,0.08);
  align-items:center;
  position:relative;
  overflow:hidden;
}
.contact-inner::before,
.contact-inner::after{
  content:'';
  position:absolute;
  border-radius:50%;
  filter:blur(18px);
  opacity:0.55;
  pointer-events:none;
}
.contact-inner::before{
  width:260px;
  height:260px;
  background:radial-gradient(circle at 50% 50%, rgba(198,32,48,0.18), rgba(198,32,48,0));
  top:-80px; left:-60px;
}
.contact-inner::after{
  width:200px;
  height:200px;
  background:radial-gradient(circle at 50% 50%, rgba(255,153,173,0.24), rgba(255,153,173,0));
  bottom:-60px; right:-40px;
}
.contact-info h2{
  margin:0.2rem 0 0.5rem;
}
.contact-details{
  display:grid;
  gap:0.75rem;
  margin-top:1.25rem;
}
.contact-details strong{
  display:block;
  font-size:1rem;
}
.contact-details span{
  font-size:0.85rem;
  color:var(--muted);
}
.contact-form{
  display:grid;
  gap:0.8rem;
}
.contact-form label{
  display:flex;
  flex-direction:column;
  gap:0.4rem;
  font-weight:600;
  font-size:0.9rem;
  color:#6a3b38;
}
.contact-form input,
.contact-form textarea{
  border:1px solid #f3d6d1;
  border-radius:14px;
  padding:0.75rem 1rem;
  font-family:inherit;
  background:linear-gradient(180deg,#fffdfc 0%, #fff7f2 100%);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--rose);
  box-shadow:0 0 0 3px rgba(198,32,48,0.16);
}
.contact-form .btn{
  margin-top:0.4rem;
  width:100%;
  box-shadow:0 14px 32px rgba(198,32,48,0.25);
}
.checkout-form .form-row{
  position:relative;
}
.terms-inline{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding-top:4px;
}
.terms-inline input[type="checkbox"]{
  margin-top:2px;
}
.terms-inline label{
  font-weight:600;
  line-height:1.45;
  cursor:pointer;
}
.address-suggestions{
  position:absolute;
  top:100%;
  left:0;
  right:0;
  background:#fff;
  border:1px solid #f1d9d5;
  border-radius:12px;
  margin-top:4px;
  list-style:none;
  padding:0;
  max-height:220px;
  overflow:auto;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  z-index:20;
}
.address-suggestions li{
  padding:0.55rem 0.8rem;
  cursor:pointer;
  font-size:0.9rem;
  display:flex;
  flex-direction:column;
  gap:0.15rem;
  border-bottom:1px solid #f7ece7;
}
.address-suggestions li:last-child{
  border-bottom:none;
}
.address-suggestions small{
  font-size:0.75rem;
  color:var(--muted);
}
.address-suggestions li:hover,
.address-suggestions li:focus{
  background:#fff6f5;
}
.contact-note{
  margin:0;
  font-size:0.85rem;
  color:#8a5d55;
}

.last-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}
.last-card{
  position:relative;
  overflow:hidden;
  border-radius:16px;
  box-shadow:var(--shadow);
  display:block;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
}
.last-card img{height:160px;object-fit:cover;width:100%}
.last-label{
  position:absolute;
  left:12px;
  bottom:12px;
  background:rgba(255,255,255,0.9);
  padding:6px 10px;
  border-radius:10px;
  font-weight:600;
}

.trust-strip{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  background:#fff;
  border-radius:16px;
  padding:16px;
  box-shadow:var(--shadow);
}
.trust-strip strong{display:block;margin-bottom:4px}
.trust-strip span{font-size:13px;color:var(--muted)}

.footer{
  margin-top:60px;
  background:linear-gradient(180deg,#fff5f2 0%, #ffe9ec 100%);
  color:#3d2b2b;
  border-top:1px solid #f1d7d3;
}
.footer-inner{
  max-width:1400px;
  margin:0 auto;
  padding:36px 20px;
  display:grid;
  grid-template-columns:1.1fr 1.9fr;
  gap:30px;
  align-items:start;
}
.footer-brand .logo{
  font-family:"Playfair Display", serif;
  font-size:24px;
  font-weight:700;
  color:#b81e39;
  margin-bottom:10px;
}
.footer-brand p{
  color:#7d5f59;
  font-size:14px;
  max-width:340px;
  margin:0 0 14px;
}
.footer-cta{
  width:max-content;
}
.footer-cols{
  display:grid;
  grid-template-columns:repeat(2,minmax(180px,1fr));
  gap:24px;
}
.footer-col{
  display:flex;
  flex-direction:column;
  gap:9px;
}
.footer-col h4{
  margin:0 0 3px;
  font-size:15px;
  font-weight:700;
  color:#6c2f2f;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.footer-col a{
  color:#5c3c3c;
  font-size:14px;
  text-decoration:none;
  width:max-content;
  border-bottom:1px solid transparent;
  transition:color .18s ease, border-color .18s ease;
}
.footer-col a:hover{
  color:#b81e39;
  border-color:#e7b4bc;
}
.footer-bottom{
  border-top:1px solid #efcfd4;
  background:transparent;
  color:#7d5f59;
}
.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:14px;
  max-width:1400px;
  margin:0 auto;
  padding:16px 20px 22px;
}
.footer-social{display:flex;gap:20px;}
.footer-social a{color:#7d5f59;text-decoration:none;}
.footer-social a:hover{color:#b81e39;}

/* Mobile cart button in header */
@media (max-width: 768px) {
  .header .cart-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0;
    width:52px;
    height:52px;
    padding:0;
    border-radius:50%;
    background:linear-gradient(135deg,#e45a84,#ff7f50);
    color:#fff;
    position:relative;
    text-decoration:none;
  }
  .header .cart-btn .cart-icon{
    margin:0;
    font-size:24px;
  }
  .header .cart-btn .cart-label{
    display:none;
  }
  .header .cart-btn .cart-count{
    position:absolute;
    top:6px;
    right:6px;
    min-width:18px;
    height:18px;
    padding:0 6px;
    border-radius:10px;
    background:#fff;
    color:#e45a84;
    font-weight:700;
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1;
  }
}

.reveal{animation:fadeUp .8s ease both}
.reveal:nth-of-type(2){animation-delay:.08s}
.reveal:nth-of-type(3){animation-delay:.16s}
.reveal:nth-of-type(4){animation-delay:.24s}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(16px)}
  to{opacity:1;transform:translateY(0)}
}
@media (prefers-reduced-motion: reduce){
  .reveal{animation:none}
}

@media(max-width:980px){
  .header-inner{flex-direction:column;align-items:flex-start}
  .hero-inner{flex-direction:column}
  .hero-media img{height:260px}
  .bestsellers-row{grid-template-columns:repeat(2, minmax(0,1fr))}
  .cats-grid{grid-template-columns:repeat(3, minmax(0,1fr))}
  .wrap-card{flex-direction:column;align-items:flex-start}
  .wrap-media img{width:100%}
  .finder-bar{grid-template-columns:repeat(2, minmax(0,1fr))}
  .last-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .trust-strip{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr;gap:24px;padding:30px 18px;}
  .footer-cols{grid-template-columns:repeat(2,minmax(150px,1fr));gap:20px;}
  .footer-bottom-inner{padding:14px 18px 20px;}
  .basket-grid{grid-template-columns:200px 1fr}
  .basket-cart{grid-column:1 / -1;position:relative;top:auto}
}
@media(max-width:640px){
  .top-nav{font-size:13px}
  .section-title{font-size:20px}
  .hero-text h1{font-size:30px}
  .hero-stats{grid-template-columns:1fr}
  .cats-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .container.narrow-mobile{max-width:95vw;padding:0;}
  .hero-cats{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:12px;
    width:95vw;
    margin:0 auto;
  }
  .hero-cat{
    max-width:100%;
    margin:0;
    height:150px;
  }
  .hero-cat img{
    height:100%;
  }
  .product-grid{
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    justify-items:center;
  }
  .bestsellers-row{
    display:flex;
    gap:12px;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-behavior:smooth;
    padding:8px;
    margin:0 0 16px 0;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }
  .b-card{
    flex:0 0 calc(88vw - 20px);
    max-width:300px;
    scroll-snap-align:start;
  }
  .product-grid .b-card img{
    height:210px;
    object-fit:contain;
    object-position:center;
    background:linear-gradient(180deg,#fff9f7 0%, #fff 100%);
  }
  .bestsellers-row::-webkit-scrollbar{
    height:4px;
  }
  .bestsellers-row::-webkit-scrollbar-track{
    background:#f0f0f0;
    border-radius:10px;
  }
  .bestsellers-row::-webkit-scrollbar-thumb{
    background:#c92a5a;
    border-radius:10px;
  }
  .finder-bar{grid-template-columns:1fr}
  .last-grid{grid-template-columns:1fr}
  .basket-grid{grid-template-columns:1fr}
  .basket-tabs{flex-direction:row;overflow-x:auto;gap:10px;padding-bottom:6px}
  .config-tab{min-width:150px;text-align:center;white-space:nowrap}
  .basket-cart{position:relative;top:auto}
  .basket-preview{height:200px}
  .footer-inner{padding:26px 16px;}
  .footer-cols{grid-template-columns:1fr;gap:18px;}
  .footer-bottom-inner{flex-direction:column;align-items:flex-start;gap:10px;padding:12px 16px 18px;}
  .footer-social{gap:14px;flex-wrap:wrap;}
}

@media(max-width:1200px){
  :root{
    --fixed-header-offset:88px;
  }
  .nav-toggle{
    display:flex;
    position:fixed;
    right:14px;
    top:14px;
    background:#fff;
    z-index:2100;
  }
  .top-nav{
    position:fixed;
    inset:0;
    width:100vw;
    max-width:100vw;
    margin:0;
    padding:90px 22px 28px;
    display:none;
    flex-direction:column;
    flex-wrap:nowrap;
    align-items:stretch;
    gap:12px;
    background:#fffaf7;
    overflow-y:auto;
    opacity:0;
    pointer-events:none;
    visibility:hidden;
    transition:opacity .25s ease, visibility .25s ease;
    z-index:2000;
    height: 500px;
  }
  body.nav-open .top-nav{
    display:flex;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }
  .top-nav a{
    display:block;
    padding:16px 0;
    border-bottom:1px solid #f1d9d5;
    font-size:15px;
    width:100%;
    color:#3a2723;
    border:none;
    background:transparent;
    font-weight:500;
  }
  .top-nav a.cart-btn,
  .top-nav .btn.cart-btn{
    width:auto;
    padding:10px 16px;
    border-radius:999px;
    align-self:center;
    display:inline-flex;
    justify-content:center;
    border-bottom:none;
  }
  .top-nav > *{
    width:100%;
  }
  .top-nav .btn{
    width:100%;
    justify-content:space-between;
  }
  .top-nav a:hover{
    background:#f5f0ed;
    border-color:transparent;
  }
  .top-nav .contact-link{
    border-bottom:2px solid transparent;
  }
  body.nav-open{
    overflow:hidden;
  }
  .top-nav a:last-child{
    border-bottom:none;
  }
  .nav-more{
    width:100%;
    display:block;
  }
  .nav-more summary{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 0;
  }
  .nav-more-menu{
    position:static;
    box-shadow:none;
    border:none;
    padding:0;
    display:block;
    width:100%;
    min-width:0;
  }
  .nav-more-menu a{
    padding:12px 0;
    border-bottom:1px solid #f1d9d5;
  }
  .nav-more-menu a:last-child{
    border-bottom:none;
  }
  .header-inner{flex-direction:row;align-items:center;}
  .hero-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .hero-stats-wide{
    width:100%;
    justify-content:flex-start;
  }
  .giftwrap-card{
    grid-template-columns:1fr;
  }
}

.cart-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:linear-gradient(135deg,#c92a5a,#e45a84);
  color:#fff;
  border:1px solid #c92a5a;
  position:relative;
  z-index:999;
  padding:10px 14px;
  border-radius:999px;
  box-shadow:0 10px 24px rgba(201,42,90,0.25);
  transition:transform .15s ease, box-shadow .15s ease;
}
.cart-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(201,42,90,0.3);
}
.cart-btn .cart-label{font-weight:700;}
.cart-btn .cart-count{
  background:rgba(255,255,255,0.18);
  padding:0 8px;
  border-radius:10px;
  min-width:22px;
  text-align:center;
  color:#fff;
  font-weight:700;
}
.cart-icon{
  font-size:15px;
  line-height:1;
  font-family:"Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji","Segoe UI Symbol",sans-serif;
}

/* Floating mobile cart shortcut */
.floating-cart{
  position:fixed;
  right:16px;
  bottom:16px;
  width:62px;
  height:62px;
  min-width:62px;
  max-width:62px;
  min-height:62px;
  max-height:62px;
  border-radius:50%;
  background:linear-gradient(135deg,#c92a5a,#e45a84);
  color:#fff;
  display:none;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:0 18px 38px rgba(201,42,90,0.25);
  z-index:120;
  animation:cart-pulse 2.4s ease-in-out infinite;
}
body.nav-open .floating-cart{
  display:none;
}
.floating-cart .floating-cart-icon{
  font-size:26px;
  line-height:1;
}
.floating-cart .floating-cart-count{
  position:absolute;
  top:8px;
  right:8px;
  min-width:20px;
  height:20px;
  border-radius:12px;
  background:#fff;
  color:#c92a5a;
  font-weight:700;
  font-size:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 12px rgba(0,0,0,0.12);
}
@keyframes cart-pulse{
  0%{transform:translateY(0);box-shadow:0 18px 38px rgba(201,42,90,0.25);}
  50%{transform:translateY(-3px);box-shadow:0 22px 44px rgba(201,42,90,0.32);}
  100%{transform:translateY(0);box-shadow:0 18px 38px rgba(201,42,90,0.25);}
}
@media (max-width: 900px){
  .floating-cart{
    display:flex;
    right:16px;
    left:auto;
  }
}
.cart-modal{
  position:fixed;
  inset:0;
  background:rgba(24, 18, 18, 0.45);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:50;
}
.cart-modal.hidden{display:none;}
.modal{
  position:fixed;
  inset:0;
  background:rgba(24, 18, 18, 0.45);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:60;
}
.modal.hidden{display:none;}
.hidden{display:none;}
.page-shell{
  min-height:100vh;
  background:var(--cream);
}
.page-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 24px;
  border-bottom:1px solid #f1e3df;
  background:#fffaf7;
}
.brand-link{
  font-family:"Playfair Display", serif;
  font-size:22px;
  font-weight:700;
  color:var(--ink);
  text-decoration:none;
}
.page-main{
  max-width:1100px;
  margin:0 auto;
  padding:24px;
}
.product-hero{
  position:relative;
  background:linear-gradient(160deg, #fff 0%, #fff6f2 60%, #fff 100%);
  border-radius:18px;
  padding:20px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.product-hero::after{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:240px;
  height:240px;
  background:radial-gradient(circle, rgba(198,32,48,0.12) 0%, rgba(198,32,48,0) 70%);
  pointer-events:none;
}
.product-layout{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:22px;
}
.detail-shell{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:22px;
}
.detail-sidebar{
  position:sticky;
  top:90px;
  align-self:start;
  background:#fff;
  border-radius:16px;
  padding:16px;
  box-shadow:var(--shadow);
}
.detail-sidebar h3{
  margin:0 0 12px;
}
.product-detail-card{
  background:linear-gradient(180deg, #fff9f7 0%, #ffece5 100%);
  border-radius:28px;
  padding:32px;
  box-shadow:var(--shadow);
  border:1px solid rgba(198, 32, 48, 0.08);
  margin-bottom:30px;
}
.product-hero-banner{
  display:flex;
  gap:30px;
  align-items:center;
  flex-wrap:wrap;
}
.hero-text{
  flex:1;
  min-width:260px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.hero-text h1{
  font-size:clamp(2.4rem, 3vw, 3rem);
  margin:0;
  line-height:1.2;
}
.hero-caption{
  margin:0;
}
.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.hero-highlights{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(160px,1fr));
  gap:14px;
  margin-top:14px;
}
.hero-highlight{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#fff 0%, #fff8f6 100%);
  border:1px solid #efd7d1;
  border-radius:18px;
  padding:14px 16px;
  display:flex;
  flex-direction:column;
  gap:4px;
  min-height:110px;
  box-shadow:0 12px 24px rgba(201,42,90,0.08);
}
.hero-highlight::after{
  content:'\2665';
  position:absolute;
  top:10px;
  right:14px;
  font-size:22px;
  line-height:1;
  color:#ff5f82;
  opacity:.9;
}
.hero-highlight strong{
  display:inline-flex;
  align-items:center;
  width:max-content;
  font-size:1.05rem;
  font-weight:800;
  color:#7f1d2d;
  background:rgba(198,32,48,0.1);
  border:1px solid rgba(198,32,48,0.14);
  border-radius:999px;
  padding:5px 10px;
  margin-right:34px;
}
.hero-highlight span{
  font-weight:800;
  font-size:1.03rem;
  color:#2f2323;
  line-height:1.2;
}
.hero-highlight small{
  color:var(--muted);
  font-size:0.95rem;
  line-height:1.3;
}
.hero-highlight:nth-child(1)::after{content:'\26A1';}
.hero-highlight:nth-child(2)::after{content:'\1F4AC';}
.hero-highlight:nth-child(3)::after{content:'\1F380';}

@media(max-width:640px){
  .hero-highlight{
    min-height:106px;
    border-radius:16px;
  }
  .hero-highlight strong{
    font-size:1rem;
  }
  .hero-highlight span{
    font-size:0.98rem;
  }
  .hero-highlight small{
    font-size:0.9rem;
  }
}
.hero-highlight .pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  color:#c92a5a;
  background:rgba(201,42,90,0.08);
  padding:4px 8px;
  border-radius:999px;
  font-weight:700;
}
@media(max-width:768px){
  .hero-highlights{
    grid-template-columns:1fr;
  }
}
.hero-media{
  flex:1;
  min-width:280px;
}
.hero-main{
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  border:1px solid #f1e3df;
}
.hero-main img{
  width:100%;
  height:auto;
  display:block;
}
.hero-thumbs{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.hero-thumbs .thumb{
  border-radius:15px;
  overflow:hidden;
  border:1px solid #f1e3df;
  padding:4px;
  background:#fff;
  cursor:pointer;
}
.hero-thumbs .thumb.active{
  border-color:var(--rose);
}
.mobile-price-card{
  display:none;
  margin-top:12px;
  background:#fff;
  border:1px solid #f1e3df;
  border-radius:14px;
  padding:14px;
  box-shadow:var(--shadow);
}
.mobile-price-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.mobile-price-card .btn.full{
  width:100%;
}
.related-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px,1fr));
  gap:16px;
}
.product-page{
  display:grid;
  grid-template-columns:240px minmax(0,1fr) 320px;
  gap:24px;
  align-items:start;
}
/* Keep inner page content below fixed header */
.category-page,
.product-page,
.cart-page .main{
  margin-top:var(--fixed-header-offset);
}
.product-page .cart-panel{
  position:sticky;
  top:90px;
}
.product-detail-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px,1fr));
  gap:20px;
  margin-bottom:18px;
}
.product-detail-description{
  background:#fff;
  border-radius:18px;
  padding:24px;
  border:1px solid #f1e3df;
  box-shadow:var(--shadow);
}
.detail-cta-card{
  background:#fff;
  border-radius:18px;
  padding:20px;
  border:1px solid #f1e3df;
  box-shadow:var(--shadow);
}
.detail-cta-card ul{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.6;
}
.category-nav{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.category-row{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.category-children{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-left:10px;
}
.category-link{
  text-align:left;
  border:1px solid #ead6cf;
  background:#fff;
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
  font-weight:600;
  padding-left:calc(10px + var(--depth, 0) * 12px);
  transition:background-color .2s ease, border-color .2s ease;
}
.category-link.active{
  border-color:var(--rose);
  background:#fff6f2;
  box-shadow:0 6px 14px rgba(198, 32, 48, 0.12);
}
.category-panel-media{
  margin-top:16px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid #f4e3dd;
}
.category-panel-media img{
  width:100%;
  display:block;
  height:auto;
}
@media (max-width: 1100px){
  .category-panel-media{
    display:none;
  }
}
.category-page{
  display:grid;
  grid-template-columns:250px 1fr;
  gap:32px;
  padding:32px 0;
}
.category-select-mobile{display:none;margin-bottom:16px;}
.category-mobile-btn{
  width:100%;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(198,32,48,0.16);
  background:linear-gradient(135deg,#fffdfc 0%, #fff5f1 70%, #ffedf3 100%);
  box-shadow:0 12px 26px rgba(198,32,48,0.08);
  font-weight:700;
  color:#3a2723;
  cursor:pointer;
}
.category-mobile-btn .thumb{
  width:50px;
  height:50px;
  border-radius:14px;
  overflow:hidden;
  background:linear-gradient(145deg,#fffdfc,#fff3ee);
  flex-shrink:0;
  box-shadow:0 8px 18px rgba(0,0,0,0.08);
  border:1px solid rgba(198,32,48,0.16);
}
.category-mobile-btn .thumb img{width:100%;height:100%;object-fit:cover;display:block;object-position:center;}
.category-mobile-btn .label{flex:1;text-align:left;}
.category-mobile-btn .chevron{color:#c62030;font-size:14px;}
.category-mobile-dropdown{
  margin-top:8px;
  border:1px solid rgba(198,32,48,0.16);
  border-radius:16px;
  background:linear-gradient(180deg,#fffdfc 0%,#fff7f4 100%);
  box-shadow:0 16px 38px rgba(198,32,48,0.12);
  overflow:hidden;
  display:none;
  padding:6px;
}
.category-mobile-dropdown.open{display:block;}
.category-mobile-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  cursor:pointer;
  border-radius:12px;
  border:1px solid transparent;
  transition:background .15s ease, border-color .15s ease;
}
.category-mobile-item + .category-mobile-item{margin-top:8px;}
.category-mobile-item:hover{
  background:#fff;
  border-color:rgba(198,32,48,0.18);
  box-shadow:0 6px 14px rgba(0,0,0,0.06);
}
.category-mobile-item .thumb{
  width:50px;
  height:50px;
  border-radius:14px;
  overflow:hidden;
  background:linear-gradient(145deg,#fffdfc,#fff3ee);
  flex-shrink:0;
  box-shadow:0 6px 14px rgba(0,0,0,0.06);
  border:1px solid #f1d9d5;
}
.category-mobile-item img{width:100%;height:100%;object-fit:cover;display:block;object-position:center center;transform:scale(1.02);}
.category-mobile-item .name{font-weight:700;color:#3a2723;line-height:1.2;}
.category-mobile-item .count{color:#c62030;font-weight:700;font-size:12px;}
.category-panel{
  background:#fff;
  border-radius:20px;
  padding:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.05);
  border:1px solid rgba(198, 32, 48, 0.08);
}
.category-panel h3{
  margin:0 0 12px;
  font-size:20px;
}
.category-panel-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.category-products{
  background:#fff;
  border-radius:28px;
  padding:28px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  border:1px solid rgba(224, 180, 172, 0.4);
}
.category-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:24px;
}
.filter-row{
  display:flex;
  gap:16px;
  margin-bottom:12px;
  flex-wrap:wrap;
  align-items:stretch;
}
.filter-pill{
  flex:1;
  min-width:150px;
  background:#fff;
  border-radius:18px;
  padding:14px 16px;
  border:1px solid rgba(201,42,90,0.12);
  display:flex;
  flex-direction:column;
  gap:8px;
  box-shadow:0 14px 30px rgba(198,32,48,0.08);
}
.filter-pill:focus-within{
  border-color:#c92a5a;
  box-shadow:0 18px 36px rgba(201,42,90,0.15);
  transform:translateY(-1px);
}
.filter-pill label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:1.2px;
  color:#c62030;
  font-weight:800;
  opacity:0.8;
}
.filter-pill select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  border:1px solid rgba(201,42,90,0.18);
  border-radius:12px;
  padding:12px 44px 12px 14px;
  background:linear-gradient(135deg,#fff,#fff7f6) url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23c92a5a' d='M1.41.59 6 5.17 10.59.59 12 2l-6 6-6-6z'/%3E%3C/svg%3E") no-repeat right 14px center;
  font-size:15.5px;
  font-weight:700;
  color:#3a2723;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.7), 0 10px 24px rgba(201,42,90,0.08);
  padding-right:42px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease, background .2s ease;
}
.filter-pill select:focus{
  outline:none;
  border-color:#c92a5a;
  box-shadow:0 0 0 3px rgba(201,42,90,0.12), 0 12px 26px rgba(201,42,90,0.12);
  background:linear-gradient(135deg,#fff7fb,#ffeef3);
}
.filter-pill select:hover{
  border-color:#d58d9f;
  transform:translateY(-0.5px);
}
@media(max-width:720px){
  .filter-row{
    flex-direction:column;
  }
}
.result-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
  color:#90564d;
  font-weight:600;
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
  justify-items:center;
}
.product-grid.loading-state{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:260px;
}
.product-detail-shell{
  min-height:320px;
}
.product-card{
  background:#fff7f4;
  border-radius:20px;
  padding-bottom:14px;
  border:1px solid rgba(198, 32, 48, 0.08);
  box-shadow:0 12px 30px rgba(0,0,0,0.06);
  overflow:hidden;
}
.product-card-media{
  position:relative;
  height:180px;
}
.product-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.product-card-badge{
  position:absolute;
  top:12px;
  left:12px;
  background:var(--rose);
  color:#fff;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
}
.product-card-body{
  padding:16px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
}
.product-card-body h3{
  margin:0;
  font-size:18px;
}
.product-card-price{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:16px;
  color:#c22730;
}
.product-card-price .old-price{
  text-decoration:line-through;
  color:var(--muted);
  font-size:14px;
}
.product-card-actions{
  display:flex;
  gap:8px;
  flex-wrap:nowrap;
  margin-top:14px;
  align-items:center;
}
.product-card-actions .btn{
  flex:1;
  justify-content:center;
  font-weight:700;
  min-height:44px;
}
.product-card-actions .btn.primary{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn.outline{
  background:#fff;
  border:1px solid #f2d9d3;
  color:var(--ink);
}
.product-gallery{
  background:#fff;
  border-radius:16px;
  padding:14px;
  box-shadow:0 10px 24px rgba(60, 22, 22, 0.08);
}
.product-info{
  background:#fff;
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 24px rgba(60, 22, 22, 0.08);
}
.product-title{
  margin:0 0 6px;
  font-size:28px;
}
.product-meta{
  color:var(--muted);
  margin-bottom:12px;
  font-weight:600;
}
.product-price{
  margin-bottom:14px;
}
.product-actions{
  display:flex;
  gap:10px;
  margin-bottom:18px;
}
.product-desc{
  border-top:1px solid #f1e3df;
  padding-top:12px;
}
.recommend{
  margin-top:26px;
}

/* Loading dots */
.loader-dots{
  display:inline-flex;
  gap:8px;
  align-items:center;
  justify-content:center;
  padding:14px 10px;
}
.loader-center{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  min-height:160px;
}
.loader-dots span{
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--rose);
  animation:bounce 1s infinite ease-in-out;
  display:block;
}
.loader-dots span:nth-child(2){animation-delay:0.12s;}
.loader-dots span:nth-child(3){animation-delay:0.24s;}
@keyframes bounce{
  0%,80%,100%{transform:scale(0.6);opacity:0.5;}
  40%{transform:scale(1);opacity:1;}
}
.detail-variants{
  margin-top:14px;
  background:#fff;
  border:1px solid #f1e3df;
  border-radius:14px;
  padding:14px;
}
.detail-variants h3{
  font-size:15px;
  margin-bottom:10px;
}
.main-image{
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  border:1px solid #f1e3df;
}
.main-image img{
  width:100%;
  height:360px;
  object-fit:contain;
  display:block;
  background:#fff;
}
.thumbs{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(80px, 1fr));
  gap:10px;
  margin-top:12px;
}
.thumb{
  border:1px solid #ead6cf;
  border-radius:10px;
  padding:6px;
  background:#fff;
  cursor:pointer;
}
.thumb.active{
  border-color:var(--rose);
  box-shadow:0 0 0 2px rgba(198, 32, 48, 0.15);
}
.thumb img{
  width:100%;
  height:70px;
  object-fit:contain;
  display:block;
}
.variant-picker{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:12px;
}
.variant-pill{
  border:1px solid #ead6cf;
  background:#fff;
  border-radius:8px;
  padding:6px;
  cursor:pointer;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  transition:all 0.2s;
}
.variant-pill:hover{
  border-color:#c92a5a;
  box-shadow:0 2px 8px rgba(201, 42, 90, 0.1);
}
.variant-pill.active{
  background:#fff6f2;
  border-color:#c92a5a;
  box-shadow:0 6px 14px rgba(198, 32, 48, 0.12);
}
.variant-pill img{
  width:40px;
  height:40px;
  object-fit:cover;
  border-radius:4px;
}
.variant-no-image{
  display:block;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f5f5f5;
  border-radius:4px;
  font-size:18px;
}
.variant-label{
  display:block;
  max-width:100px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.variant-pill.active{
  background:#fff6f2;
  border-color:var(--rose);
  box-shadow:0 6px 14px rgba(198, 32, 48, 0.12);
}
.variant-meta{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(120px,1fr));
  gap:10px;
  background:#fffaf8;
  border:1px solid #f1e3df;
  border-radius:12px;
  padding:10px 12px;
}
.variant-meta-block{
  background:#fff;
  border-radius:10px;
  padding:10px 12px;
  border:1px solid rgba(198,32,48,0.08);
  box-shadow:0 6px 12px rgba(0,0,0,0.04);
}
.variant-meta-block small{
  display:block;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:#c62030;
  margin-bottom:4px;
}
.variant-meta-block strong{
  font-size:14px;
  color:#3a2723;
}
.variant-urgency{
  margin-top:10px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:#ffe9e3;
  color:#b22730;
  border:1px solid #f3c2b7;
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  font-weight:600;
}
.recommend .section-title{
  display:flex;
  align-items:center;
  gap:10px;
}
.recommend .section-title::before{
  content:"";
  width:18px;
  height:18px;
  border-radius:6px;
  background:linear-gradient(135deg, var(--rose), var(--rose-dark));
  box-shadow:0 6px 12px rgba(198, 32, 48, 0.2);
}
.product-price .price-now{
  font-size:22px;
}
.product-price .price-old{
  font-size:14px;
}
.image-preview.detail{
  grid-template-columns:repeat(auto-fill, minmax(160px, 1fr));
}
.image-preview.detail img{
  height:160px;
}
.modal-content{
  background:#fff;
  width:min(920px, 100%);
  border-radius:18px;
  padding:20px;
  box-shadow:0 20px 40px rgba(0,0,0,0.2);
  max-height:calc(100vh - 48px);
  overflow:auto;
}
.modal-wide{width:min(980px, 100%)}
.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:stretch;
}
.b-info .card-actions{
  margin-top:auto;
}
.card-actions .btn{
  flex:1 1 calc(50% - 10px);
  text-align:center;
  justify-content:center;
  font-weight:700;
}
.detail-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:18px;
  align-items:start;
}
.detail-info .detail-desc{
  margin:8px 0 12px;
}
.detail-variants{
  margin-top:16px;
}
.price-stack{
  display:flex;
  align-items:baseline;
  gap:8px;
}
.image-preview{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(120px, 1fr));
  gap:10px;
}
.image-preview .preview-item{
  border:1px solid #e7c9c0;
  border-radius:12px;
  padding:6px;
  background:#fff;
}
.image-preview .preview-item.primary{
  border-color:var(--rose);
  box-shadow:0 0 0 1px rgba(198, 32, 48, 0.25);
}
.image-preview img{
  width:100%;
  height:120px;
  object-fit:contain;
  background:#fff;
  border-radius:8px;
  display:block;
}
.table{
  width:100%;
  border-collapse:collapse;
}
.table th,
.table td{
  text-align:left;
  padding:8px 6px;
  border-bottom:1px solid #f1e3df;
  font-size:14px;
}
@media(max-width:900px){
  .detail-shell{grid-template-columns:1fr}
  .detail-sidebar{position:static}
  .product-layout{grid-template-columns:1fr}
  .detail-grid{grid-template-columns:1fr}
  .product-page{
    grid-template-columns:1fr;
    gap:18px;
  }
  .product-page .category-panel,
  .product-page .cart-panel{
    order:2;
    position:static;
  }
  .product-page .product-main{
    order:1;
  }
  .product-hero-banner{
    flex-direction:column;
  }
  .hero-media, .hero-text{
    width:100%;
  }
  .hero-cta{
    display:none;
  }
  .mobile-price-card{
    display:flex;
    flex-direction:column;
  }
  .related-grid{
    grid-template-columns:repeat(auto-fit, minmax(160px,1fr));
  }
  .b-card img{
    height:180px;
  }
}
@media(max-width:768px){
  .category-page{
    grid-template-columns:1fr;
  }
  .category-panel{
    display:none;
  }
  .category-select-mobile{
    display:block;
  }
  .product-grid .b-card img{
    height:210px;
    object-fit:contain;
    object-position:center;
    background:linear-gradient(180deg,#fff9f7 0%, #fff 100%);
  }
}
.category-block{
  margin:18px 0;
}
.category-block h3{
  margin:0 0 10px;
}


.category-toggle{
  width:100%;
  text-align:left;
  padding:14px 52px 14px 16px;
  border:1px solid rgba(198,32,48,0.14);
  background:linear-gradient(135deg,#fffdfc 0%, #fff6f2 60%, #fff1ec 100%);
  border-radius:14px;
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:12px;
  color:#3a2723;
  box-shadow:0 12px 28px rgba(198,32,48,0.08);
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .2s ease;
  position:relative;
}
.category-toggle .cat-left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.category-toggle .cat-thumb{
  width:54px;
  height:54px;
  border-radius:14px;
  overflow:hidden;
  background:linear-gradient(145deg,#fffdfc,#fff3ee);
  border:1px solid rgba(198,32,48,0.16);
  flex-shrink:0;
  box-shadow:0 8px 18px rgba(0,0,0,0.06);
}
.category-toggle .cat-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transform:scale(1.02);
}
.category-toggle .cat-title{
  font-weight:700;
  font-size:14px;
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.category-toggle[aria-expanded='true']{
  background:linear-gradient(135deg,#ffeceb 0%, #ffe1e1 100%);
  border-color:rgba(198,32,48,0.28);
  box-shadow:0 16px 32px rgba(198,32,48,0.12);
}
.category-toggle:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(198,32,48,0.12);
  border-color:rgba(198,32,48,0.22);
}
.category-toggle .muted{
  margin:0;
}
.cat-count{
  margin-left:auto;
  background:#fff;
  color:#c62030;
  padding:6px 12px;
  border-radius:12px;
  border:1px solid rgba(198,32,48,0.14);
  font-weight:700;
  min-width:40px;
  text-align:center;
  box-shadow:0 6px 12px rgba(198,32,48,0.08);
}
.category-toggle::after{
  content:'\25BE';
  font-size:14px;
  color:#c62030;
  transition:transform .2s ease;
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
}
.category-toggle[aria-expanded='true']::after{
  transform:translateY(-50%) rotate(-180deg);
}
.category-products{
  margin-top:10px;
}

/* Compact preview inside collapsible category sections */
.category-block .category-products{
  padding:14px;
  border-radius:16px;
  box-shadow:0 8px 18px rgba(198,32,48,0.06);
}
.category-block .bestsellers-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  overflow-x:auto;
  padding-bottom:6px;
}
.category-block .b-card{
  box-shadow:none;
  border:1px solid rgba(198,32,48,0.12);
  border-radius:12px;
  flex:0 0 240px; /* keep a stable card width */
  max-width:240px;
  scroll-snap-align:start;
}
.category-block .b-card img{
  height:150px;
  object-fit:cover;
}
.category-block .b-info{
  padding:12px;
}
.category-block .b-info h3{
  font-size:14px;
  line-height:1.35;
}

@media(max-width:900px){
  .category-block .bestsellers-row{
    display:grid;
    grid-template-columns:1fr;
    justify-items:center;
    overflow:visible;
  }
  .category-block .b-card{
    flex:none;
    width:100%;
    max-width:360px;
  }
}
.category-block .b-meta{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:8px;
}
.category-block .card-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

@media(max-width:620px){
  .category-toggle{
    padding:12px 46px 12px 14px;
    border-radius:12px;
    box-shadow:0 8px 18px rgba(198,32,48,0.08);
  }
  .category-toggle .muted{
    padding:6px 10px;
    font-size:12px;
    min-width:42px;
  }
}

/* ================= KONFIGURĂTOR ================= */

/* configurator-section temporarily disabled */

.configurator-header {
  text-align: center;
  margin-bottom: 3rem;
}

.config-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(181, 54, 63, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #b5363f;
  cursor: default;
  margin-bottom: 1rem;
}

.config-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin: 0.5rem 0;
  color: #1f1418;
}

.gradient-title {
  background: linear-gradient(135deg, #c8845f 0%, #b5363f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.config-subtitle {
  font-size: 1.05rem;
  color: #6d4d55;
  max-width: 600px;
  margin: 1rem auto 0;
}

.configurator-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

/* KategĂłrie vÄľavo */
.config-categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 160px;
}

.category-tab {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 20, 24, 0.1);
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  color: #1f1418;
}

.category-tab:hover {
  background: #fff;
  border-color: #b5363f;
  transform: translateX(4px);
}

.category-tab.active {
  background: #b5363f;
  color: #fff;
  border-color: #b5363f;
  box-shadow: 0 4px 14px rgba(181, 54, 63, 0.3);
}

/* ProduktovĂ˝ carousel */
.config-products {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(31, 20, 24, 0.08);
  min-height: 500px;
}

.products-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.config-product-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.config-product-card:hover {
  border-color: #b5363f;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(181, 54, 63, 0.2);
}

.config-product-card.selected {
  border-color: #b5363f;
  background: #fff9f7;
}

.config-product-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.config-product-info {
  padding: 1rem;
}

.config-product-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: #f59e0b;
}

.config-product-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: #1f1418;
}

.config-product-desc {
  font-size: 0.85rem;
  color: #6d4d55;
  margin: 0 0 0.75rem;
}

.config-product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #b5363f;
}

.config-product-add {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 2px solid #b5363f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #b5363f;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.config-product-card:hover .config-product-add {
  opacity: 1;
}

.config-product-card.selected .config-product-add {
  opacity: 1;
  background: #b5363f;
  color: #fff;
}

/* KoĹˇĂ­k vpravo */
.config-basket {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(31, 20, 24, 0.1);
  box-shadow: 0 10px 40px rgba(31, 20, 24, 0.08);
  min-width: 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 100px;
}

.basket-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(31, 20, 24, 0.1);
}

.basket-icon {
  font-size: 2rem;
  line-height: 1;
}

.basket-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.basket-label strong {
  font-size: 1.05rem;
  color: #1f1418;
}

.basket-label span {
  font-size: 0.85rem;
  color: #6d4d55;
}

.basket-preview {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  background: #fef7f3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(181, 54, 63, 0.2);
}

.basket-empty-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  opacity: 0.4;
}

.basket-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.basket-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #fff9f7;
  border-radius: 0.75rem;
  border: 1px solid rgba(181, 54, 63, 0.1);
}

.basket-item-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.basket-item-info {
  flex: 1;
}

.basket-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  color: #1f1418;
}

.basket-item-price {
  font-size: 0.85rem;
  color: #b5363f;
  font-weight: 600;
}

.basket-item-remove {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #6d4d55;
  padding: 0.25rem;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.basket-item-remove:hover {
  opacity: 1;
  color: #b5363f;
}

.basket-cta {
  width: 100%;
  text-align: center;
  line-height: 1.4;
}

.basket-cta small {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 400;
}

.basket-cta:disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
}

/* ResponzĂ­vny dizajn */
@media (max-width: 1200px) {
  .configurator-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .config-categories {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: auto;
  }

  .config-basket {
    max-width: 100%;
    position: static;
  }
}

@media (max-width: 768px) {
  .configurator-section {
    padding: 2rem 1rem;
  }

  .products-carousel {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .config-product-img {
    height: 120px;
  }
}
/* ================= INTERAKTĂŤVNY KONFIGURĂTOR ================= */

/* PredkonfigurovanĂ© koĹˇĂ­ky */
.predefined-baskets {
  margin: 2rem 0;
}

.baskets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.predefined-basket {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(31, 20, 24, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.predefined-basket:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(31, 20, 24, 0.15);
  border-color: #b5363f;
}

.basket-preview-card {
  position: relative;
}

.basket-icon-large {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.predefined-basket h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.basket-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #b5363f;
  margin-bottom: 0.25rem;
}

.basket-desc {
  color: #6d4d55;
  font-size: 0.95rem;
}

/* InteraktĂ­vny 3D koĹˇĂ­k */
.interactive-basket {
  position: relative;
  height: 400px;
  margin: 1.5rem 0;
}

.basket-3d {
  perspective: 1000px;
  height: 100%;
}

.basket-body {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(10deg) rotateY(5deg);
  transition: transform 0.3s ease;
}

.basket-body:hover {
  transform: rotateX(5deg) rotateY(-5deg);
}

.basket-lid {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 60px;
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 10;
}

.basket-items-container {
  position: absolute;
  bottom: 40px;
  left: 20px;
  right: 20px;
  top: 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  padding: 10px;
}

.basket-item-3d {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: dropIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  cursor: pointer;
}

@keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(-100px) rotateZ(0deg) scale(0.3);
  }
  60% {
    opacity: 1;
    transform: translateY(20px) rotateZ(180deg) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateZ(360deg) scale(1);
  }
}

.basket-item-3d:nth-child(1) { animation-delay: 0ms; left: 10%; }
.basket-item-3d:nth-child(2) { animation-delay: 100ms; left: 30%; }
.basket-item-3d:nth-child(3) { animation-delay: 200ms; left: 60%; }
.basket-item-3d:nth-child(4) { animation-delay: 300ms; left: 80%; }

.basket-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #6d4d55;
}

.basket-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.basket-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.clear-basket {
  font-size: 0.9rem;
}

.list-row-actions{display:flex;align-items:center;gap:8px;}
.avatar-sm{width:42px;height:42px;object-fit:cover;border-radius:10px;border:1px solid #f1e3df;}




#categoryList .avatar-sm{width:48px;height:48px;border-radius:12px;object-fit:cover;border:1px solid #f1e3df;display:block;}
#categoryList .list-row{display:flex;align-items:center;justify-content:space-between;padding:10px 0;border-bottom:1px solid #f4e4df;gap:12px;}
#categoryList .list-row-actions{display:flex;align-items:center;gap:8px;flex-shrink:0;}
#categoryList .list-row-actions img{display:block;flex-shrink:0;}
#categoryList .list-row:last-child{border-bottom:none;}
#categoryList .list-row strong{display:block;}
#categoryList .list-row .muted{display:block;}

