/* ============================================================
   RESET & ROOT
============================================================ */
:root{
  --cream:#FAF7F2; --warm:#FDF9F4; --sand:#E8DDD0;
  --taupe:#C4A882; --bark:#8B6347; --deep:#1C1410;
  --green:#3D6B4F; --sage:#8FAF8A; --lsage:#EAF2E8;
  --rose:#C4736A; --gold:#C8A84B;
  --sh:rgba(28,20,16,.08);
  --nav-h:64px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;overflow-x:hidden;}
/* body{
  font-family:'Outfit',sans-serif;
  background:var(--cream);
  color:var(--deep);
  overflow-x:hidden;
  max-width:100vw;
} */
img{
  max-width:100%;
  display:block;
}
button,input,select,textarea{
  font-family:'Outfit',sans-serif;
}




/* =============+++++++ NAV SECTION +++++++============== */

#mainHeader{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:900;
  height:var(--nav-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 48px;
  transition:background .4s,box-shadow .4s;
}
#mainHeader.scrolled{
  background:rgba(250,247,242,.97);
  backdrop-filter:blur(16px);
  box-shadow:0 1px 0 var(--sand);
}
.nav-brand{
  font-family:'Playfair Display',serif;
  font-size:20px;
  font-weight:700;
  color:#fff;
  text-decoration:none;
  letter-spacing:.02em;
  transition:color .4s;
  flex-shrink:0;
}
#mainHeader.scrolled .nav-brand{
  color:var(--deep);
}

/* pill nav - hidden on mobile */
.nav-center{
  display:flex;
  align-items:center;
  gap:4px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  border-radius:40px;
  padding:5px 6px;
  transition:all .4s;
}
#mainHeader.scrolled .nav-center{
  background:var(--warm);
  border-color:var(--sand);
}
.nav-link{
  padding:8px 16px;
  font-size:13px;
  font-weight:400;
  letter-spacing:.04em;
  color:rgba(255,255,255,.85);
  text-decoration:none;
  border-radius:30px;
  transition:all .25s;
  white-space:nowrap;
}
#mainHeader.scrolled .nav-link{
  color:var(--deep);
}
.nav-link:hover,.nav-link.active{
  background:rgba(255,255,255,.2);
  color:#fff;
}
#mainHeader.scrolled .nav-link:hover,
#mainHeader.scrolled .nav-link.active{
  background:var(--deep);
  color:#fff;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-icon-btn{
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.1);
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  transition:all .25s;
  position:relative;
}
#mainHeader.scrolled .nav-icon-btn{
  border-color:var(--sand);
  background:var(--warm);
  color:var(--deep);
}
.nav-icon-btn:hover{
  transform:scale(1.08);
}
.cart-count{
  position:absolute;
  top:-4px;
  right:-4px;
  width:17px;
  height:17px;
  background:var(--rose);
  color:#fff;
  font-size:10px;
  font-weight:600;
  border-radius:50%;
  display:none;
  align-items:center;
  justify-content:center;
}
.cart-count.has-items{
  display:flex;
}

/* hamburger - mobile only */
.nav-hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding:6px;
  background:none;
  border:none;
}
.nav-hamburger span{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:all .3s;
}
#mainHeader.scrolled .nav-hamburger span{background:var(--deep);}
.nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-hamburger.open span:nth-child(2){opacity:0;}
.nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* mobile drawer */
.mobile-drawer{
  display:none;
  position:fixed;top:var(--nav-h);left:0;right:0;
  background:var(--warm);
  border-bottom:1px solid var(--sand);
  padding:16px 20px 24px;
  z-index:890;
  transform:translateY(-10px);
  opacity:0;
  transition:all .3s cubic-bezier(.22,1,.36,1);
  pointer-events:none;
}
.mobile-drawer.open{
  transform:translateY(0);
  opacity:1;
  pointer-events:all;
}
.mobile-drawer a{
  display:block;
  padding:14px 0;
  font-size:16px;
  font-weight:500;
  color:var(--deep);
  text-decoration:none;
  border-bottom:1px solid var(--sand);
  transition:color .2s;
}
.mobile-drawer a:hover{
  color:var(--bark);
}
.mobile-drawer a:last-child{
  border-bottom:none;
}


/*=============+++++++ SEARCH-BAR SECTION +++++++============== */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(28,20,16,.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 20px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.search-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.search-box {
  position: relative;
  background: var(--warm);
  border-radius: 16px;
  padding: 28px 24px;
  width: 100%;
  max-width: 560px;
  transform: translateY(-20px);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.search-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-close:hover {
  color: #000;
}

.search-input-wrapper {
  position: relative;
}

.search-reset {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #666;
  cursor: pointer;
}

.search-reset:hover {
  color: #000;
}

.search-overlay.open .search-box {
  transform: translateY(0);
}

.search-box input {
  width: 100%;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  border: none;
  background: none;
  color: var(--deep);
  outline: none;
  border-bottom: 2px solid var(--sand);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.search-hints {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.search-hint {
  padding: 6px 14px;
  background: var(--sand);
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: background .2s;
  border: none;
}
.search-hint:hover {
  background: var(--taupe);
  color: #fff;
}
.search-btn{
  
}


/*=============+++++++ PAGE HEADER SECTION +++++++============== */

.page-hero{
  height:420px;
  position:relative;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:url('img/banner.png') center/cover no-repeat;
  filter:brightness(.35) saturate(1);
  animation:heroZoom 8s ease-out both;
}
@keyframes heroZoom{
  from{
    transform:scale(1.08);
  }to{
    transform:scale(1);}
  }
.hero-content{
  position:relative;
  z-index:2;
  padding:48px 72px;
  animation:heroUp .9s cubic-bezier(.22,1,.36,1) .2s both;
}
@keyframes heroUp{
  from{
    opacity:0;
    transform:translateY(36px);
  }to{
    opacity:1;
    transform:translateY(0);}
  }
.hero-eyebrow{
  font-size:11px;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:var(--taupe);
  margin-bottom:12px;
  display:block;
}
.hero-title{
  font-family:'Playfair Display',serif;
  font-size:72px;
  font-weight:700;
  line-height:.95;
  color:#fff;
  margin-bottom:18px;
}
.hero-title em{
  font-style:italic;
  color:var(--taupe);
}
.hero-sub{
  color:rgba(255,255,255,.5);
  font-size:15px;
  font-weight:300;
  max-width:400px;
  line-height:1.65;
}
.hero-stats{
  position:absolute;
  right:72px;
  bottom:48px;
  z-index:2;
  display:flex;
  gap:36px;
  animation:heroUp .9s cubic-bezier(.22,1,.36,1) .4s both;
}
.stat-num{
  font-family:'Playfair Display',serif;
  font-size:30px;
  font-weight:700;
  color:#fff;
}
.stat-label{
  font-size:11px;
  letter-spacing:.15em;
  color:rgba(255,255,255,.4);
  text-transform:uppercase;
}

/*=============+++++++ FILTER SECTION +++++++============== */

.shop-controls{
  position:sticky;
  top:var(--nav-h);
  z-index:100;
  background:var(--cream);
  border-bottom:1px solid var(--sand);
  padding:0 72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  overflow:hidden;
}
.filter-tabs{
  display:flex;
  gap:0;
  overflow-x:auto;
  scrollbar-width:none;
  flex:1;
}
.filter-tabs::-webkit-scrollbar{
  display:none;
}
.filter-tab{
  padding:16px 18px;
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-weight:500;
  color:#aaa;
  cursor:pointer;
  border:none;
  background:none;
  border-bottom:2px solid transparent;
  white-space:nowrap;
  transition:all .25s;
  flex-shrink:0;
}
.filter-tab:hover{
  color:var(--deep);
}
.filter-tab.active{
  color:var(--deep);
  border-bottom-color:var(--bark);
}
.sort-select{
  font-size:12px;
  letter-spacing:.06em;
  border:1px solid var(--sand);
  background:transparent;
  color:var(--deep);
  padding:7px 12px;
  border-radius:20px;
  outline:none;
  cursor:pointer;
  flex-shrink:0;
}

/*=============+++++++ PRODUCT GRID SECTION +++++++============== */

.shop-layout{
  padding:56px 72px 80px;
  max-width:1440px;
  margin:0 auto;
}
.grid-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:40px;
  flex-wrap:wrap;
  gap:12px;
}
.grid-title-sm{
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--bark);
  margin-bottom:6px;
}
.grid-title{
  font-family:'Playfair Display',serif;
  font-size:36px;
  font-weight:600;
  line-height:1.1;
}
.grid-title em{
  font-style:italic;
}
.grid-count{
  font-size:13px;
  color:#999;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.product-card{
  cursor:pointer;
  transition:transform .4s cubic-bezier(.22,1,.36,1);
  animation:cardReveal .6s cubic-bezier(.22,1,.36,1) both;
  min-width:0;
}
.product-card:nth-child(1){
  animation-delay:.05s
}
.product-card:nth-child(2){
  animation-delay:.12s
}
.product-card:nth-child(3){
  animation-delay:.19s
}
.product-card:nth-child(4){
  animation-delay:.26s
}
.product-card:nth-child(5){
  animation-delay:.33s
}
.product-card:nth-child(6){
  animation-delay:.40s
}
.product-card:nth-child(7){
  animation-delay:.47s
}
@keyframes cardReveal{
  from{
    opacity:0;
    transform:translateY(24px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.product-card:hover{
  transform:translateY(-6px);
}

.card-image{
  position:relative;
  overflow:hidden;
  border-radius:8px;
  background:var(--sand);
  aspect-ratio:4/5;
}
.card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s cubic-bezier(.22,1,.36,1),filter .4s;
  filter:saturate(.85);
}
.product-card:hover .card-image img{
  transform:scale(1.06);
  filter:saturate(1);}
.card-badge{
  position:absolute;
  top:12px;
  left:12px;
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:4px 10px;
  border-radius:3px;
  font-weight:600;
}
.badge-new{
  background:var(--green);
  color:#fff;
}
.badge-sale{
  background:var(--rose);
  color:#fff;
}
.badge-best{
  background:var(--gold);
  color:var(--deep);
}
.card-quick{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(28,20,16,.75) 0%,rgba(28,20,16,.1) 55%,transparent 100%);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:16px;
  opacity:0;
  transition:opacity .35s;
}
.product-card:hover .card-quick{
  opacity:1;
}
.btn-quick{
  width:100%;
  padding:12px;
  background:#fff;
  color:var(--deep);
  border:none;
  border-radius:4px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  cursor:pointer;
  margin-bottom:8px;
  transition:background .2s;
}
.btn-quick:hover{
  background:var(--taupe);
  color:#fff;
}
.card-quick-sub{
  display:flex;
  gap:8px;
}
.btn-cart-quick,.btn-wish{
  flex:1;
  padding:9px;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  border-radius:4px;
  font-size:11px;
  cursor:pointer;
  transition:background .2s;
  white-space:nowrap;
}
.btn-cart-quick:hover,.btn-wish:hover{
  background:rgba(255,255,255,.28);
}
.card-body{
  padding:14px 4px 0;
}
.card-cat{
  font-size:10px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--bark);
  margin-bottom:4px;
}
.card-name{
  font-family:'Playfair Display',serif;
  font-size:17px;
  font-weight:600;
  color:var(--deep);
  margin-bottom:5px;
  line-height:1.25;
}
.card-desc{
  font-size:12px;
  color:#888;
  line-height:1.55;
  margin-bottom:10px;
}
.card-footer2{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:4px;
}
.card-price{
  font-family:'Playfair Display',serif;
  font-size:18px;
  font-weight:600;
  color:var(--deep);
}
.old-price{
  font-size:12px;
  font-weight:300;
  color:#ccc;
  text-decoration:line-through;
  margin-right:5px;
  font-family:'Outfit',sans-serif;
}
.stars{
  color:var(--gold);
  font-size:12px;
  letter-spacing:1px;
}
.review-count{
  font-size:11px;
  color:#aaa;
  margin-left:3px;
}

/* ============================================================
   BUNDLE BANNER
============================================================ */
.bundle-banner{
  margin:0 72px 72px;
  background:var(--deep);
  border-radius:16px;
  padding:56px 64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  overflow:hidden;
}
.bundle-banner::before{
  content:'';
  position:absolute;
  top:-80px;
  right:-80px;
  width:360px;
  height:360px;
  background:radial-gradient(circle,rgba(196,168,130,.15) 0%,transparent 70%);
  border-radius:50%;
  pointer-events:none;
}
.bundle-left{
  max-width:480px;
}
.bundle-eyebrow{
  font-size:11px;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:var(--taupe);
  margin-bottom:14px;
  display:block;
}
.bundle-title{
  font-family:'Playfair Display',serif;
  font-size:44px;
  font-weight:700;
  color:#fff;
  line-height:1.05;
  margin-bottom:16px;
}
.bundle-title em{
  font-style:italic;
  color:var(--taupe);
}
.bundle-desc{
  color:rgba(255,255,255,.5);
  font-size:14px;
  line-height:1.65;
  margin-bottom:24px;
}
.bundle-price{
  font-family:'Playfair Display',serif;
  font-size:38px;
  color:var(--taupe);
  font-weight:700;
  margin-bottom:6px;
}
.bundle-save{
  font-size:13px;
  color:var(--sage);
}
.bundle-cta{
  display:inline-block;
  margin-top:24px;
  padding:14px 36px;
  background:var(--taupe);
  color:var(--deep);
  border:none;
  border-radius:4px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .3s;
}
.bundle-cta:hover{
  background:#d4b892;
}
.bundle-right{
  display:flex;
  gap:10px;
  z-index:2;
  flex-shrink:0;
}
.bundle-img-wrap{
  width:110px;
  height:150px;
  border-radius:8px;
  overflow:hidden;
}
.bundle-img-wrap:nth-child(2){
  margin-top:20px;
}
.bundle-img-wrap:nth-child(3){
  margin-top:-10px;
}
.bundle-img-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.6);
}

/* ============================================================
   BENEFITS
============================================================ */
.benefits{
  display:grid;grid-template-columns:repeat(4,1fr);
  background:var(--deep);
  margin:0 72px 72px;
  border-radius:16px;
  overflow:hidden;
}
.benefit{
  padding:32px 24px;
  border-right:1px solid rgba(255,255,255,.06);
  transition:background .3s;
}
.benefit:last-child{
  border-right:none;
}
.benefit:hover{
  background:rgba(255,255,255,.04);
}
.benefit-icon{
  font-size:26px;
  margin-bottom:12px;
}
.benefit-title{
  font-family:'Playfair Display',serif;
  font-size:16px;
  color:#fff;
  margin-bottom:7px;
}
.benefit-desc{
  font-size:12px;
  color:rgba(255,255,255,.4);
  line-height:1.6;
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews-section{
  padding:0 72px 72px;
}
.reviews-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:24px;
  margin-bottom:36px;
}
.overall-score{
  display:flex;
  align-items:center;
  gap:18px;
}
.big-score{
  font-family:'Playfair Display',serif;
  font-size:68px;
  font-weight:700;
  color:var(--deep);
  line-height:1;
}
.score-stars{
  color:var(--gold);
  font-size:18px;
  margin-bottom:4px;
}
.score-count{
  font-size:13px;
  color:#999;
}
.bar-grid{
  display:grid;
  gap:5px;
  min-width:200px;
}
.bar-row{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  color:#888;
}
.bar-track{
  flex:1;
  height:5px;
  background:var(--sand);
  border-radius:3px;
  overflow:hidden;
}
.bar-fill{
  height:100%;
  background:var(--gold);
  border-radius:3px;
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-bottom:36px;
}
.review-card{
  background:#fff;
  border-radius:10px;
  padding:22px;
  border:1px solid var(--sand);
  transition:box-shadow .3s;
}
.review-card:hover{
  box-shadow:0 8px 28px var(--sh);
}
.reviewer-top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}
.reviewer-avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--sand);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Playfair Display',serif;
  font-size:17px;
  font-weight:700;
  color:var(--bark);
  flex-shrink:0;
}
.reviewer-name{
  font-weight:600;
  font-size:14px;
  margin-bottom:2px;
}
.reviewer-date{
  font-size:12px;
  color:#aaa;
}
.review-stars{
  color:var(--gold);
  font-size:12px;
  margin-bottom:8px;
}
.review-title{
  font-family:'Playfair Display',serif;
  font-size:15px;
  margin-bottom:7px;
}
.review-text{
  font-size:13px;
  color:#667;
  line-height:1.65;
}
.review-tag{
  display:inline-block;
  margin-top:10px;
  font-size:11px;
  color:var(--bark);
  background:#f5ede3;
  padding:4px 10px;
  border-radius:20px;
}

/* write review */
.write-review{
  background:var(--warm);
  border:1px solid var(--sand);
  border-radius:14px;
  padding:36px;
}
.write-review h3{
  font-family:'Playfair Display',serif;
  font-size:24px;
  margin-bottom:5px;
}
.write-review>p{
  font-size:14px;
  color:#888;
  margin-bottom:24px;
}
.rfg{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}
.form-field{
  display:flex;
  flex-direction:column;
  gap:5px;
}
.form-field label{
  font-size:11px;
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#888;
}
.form-field input,
.form-field select,
.form-field textarea{
  padding:11px 14px;
  border:1.5px solid var(--sand);
  border-radius:6px;
  background:#fff;
  font-size:14px;
  color:var(--deep);
  outline:none;
  transition:border-color .2s;
  width:100%;
}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{
  border-color:var(--bark);
}
.form-field textarea{
  resize:vertical;
  min-height:90px;
}
.star-picker{
  display:flex;
  gap:6px;
}
.star-pick{
  font-size:26px;
  cursor:pointer;
  color:var(--sand);
  transition:color .15s,transform .15s;
}
.star-pick:hover,.star-pick.lit{
  color:var(--gold);
  transform:scale(1.15);
}
.btn-submit-review{
  margin-top:18px;
  padding:14px 40px;
  background:var(--deep);
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .3s;
}
.btn-submit-review:hover{
  background:var(--bark);
}

/* ============================================================
   PRODUCT DETAIL PANEL
============================================================ */
.detail-overlay{
  position:fixed;
  inset:0;
  z-index:1000;
  background:rgba(28,20,16,.65);
  backdrop-filter:blur(6px);
  opacity:0;
  pointer-events:none;
  transition:opacity .4s;
}
.detail-overlay.open{
  opacity:1;
  pointer-events:all;
}
.detail-panel{
  position:fixed;
  right:0;
  top:0;
  bottom:0;
  z-index:1001;
  width:min(820px,100vw);
  background:var(--warm);
  transform:translateX(100%);
  transition:transform .5s cubic-bezier(.22,1,.36,1);
  overflow-y:auto;
  overflow-x:hidden;
  display:flex;
  flex-direction:column;
}
.detail-panel.open{
  transform:translateX(0);
}
.detail-close{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 24px;
  background:var(--warm);
  border-bottom:1px solid var(--sand);
  flex-shrink:0;
}
.detail-close span{
  font-size:12px;
  color:#999;
  letter-spacing:.06em;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  max-width:70%;
}
.btn-close-panel{
  width:38px;
  height:38px;
  border-radius:50%;
  border:1.5px solid var(--sand);
  background:none;
  cursor:pointer;
  font-size:17px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--deep);
  transition:all .2s;
  flex-shrink:0;
}
.btn-close-panel:hover{
  background:var(--deep);
  color:#fff;
  border-color:var(--deep);
}
.detail-body{
  display:flex;
  gap:0;
  flex:1;
  min-height:0;
}
.detail-images{
  width:45%;
  flex-shrink:0;
  position:sticky;
  top:54px;
  height:calc(100vh - 54px);
  overflow:hidden;
}
.detail-main-img{
  width:100%;
  height:75%;
  object-fit:cover;
}
.detail-thumb-row{
  display:flex;
  height:25%;
}
.detail-thumb{
  flex:1;
  overflow:hidden;
  cursor:pointer;
  border-top:2px solid transparent;
  transition:border-color .2s;
}
.detail-thumb.active{
  border-color:var(--bark);
}
.detail-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.7);
  transition:filter .3s;
}
.detail-thumb:hover img,.detail-thumb.active img{
  filter:saturate(1);
}
.detail-info{
  flex:1;
  padding:32px 28px;
  overflow-y:auto;
  min-width:0;
}
.detail-cat{
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--bark);
  margin-bottom:8px;
}
.detail-name{
  font-family:'Playfair Display',serif;
  font-size:28px;
  font-weight:700;
  line-height:1.15;
  margin-bottom:8px;
}
.detail-tagline{
  font-size:13px;
  color:#888;
  margin-bottom:16px;
  font-style:italic;
}
.detail-rating{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}
.detail-stars{
  color:var(--gold);
  font-size:14px;
}
.detail-price{
  font-family:'Playfair Display',serif;
  font-size:32px;
  font-weight:700;
  color:var(--deep);
  margin-bottom:5px;
}
.detail-price-sub{
  font-size:12px;
  color:#aaa;
  margin-bottom:22px;
}
.divider{
  height:1px;
  background:var(--sand);
  margin:20px 0;
}
.detail-section-label{
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#aaa;
  margin-bottom:10px;
}
.variant-group{
  display:flex;
  gap:8px;
  margin-bottom:20px;
  flex-wrap:wrap;
}
.variant-btn{
  padding:8px 16px;
  border:1.5px solid var(--sand);
  border-radius:4px;
  background:none;
  font-size:13px;
  cursor:pointer;
  transition:all .2s;
}
.variant-btn.active,.variant-btn:hover{
  border-color:var(--deep);
  background:var(--deep);
  color:#fff;
}
.add-row{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:14px;
  flex-wrap:wrap;
}
.qty-control{
  display:flex;
  align-items:center;
  border:1.5px solid var(--sand);
  border-radius:6px;
  overflow:hidden;
}
.qty-btn{
  width:38px;
  height:46px;
  border:none;
  background:none;
  font-size:17px;
  cursor:pointer;
  color:var(--deep);
  transition:background .2s;
}
.qty-btn:hover{
  background:var(--sand);
}
.qty-num{
  width:36px;
  text-align:center;
  font-size:14px;
  font-weight:500;
}
.btn-add-cart{
  flex:1;
  min-width:120px;
  height:46px;
  background:var(--deep);
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .3s;
}
.btn-add-cart:hover{
  background:var(--bark);
}
.btn-wishlist-big{
  width:46px;
  height:46px;
  border-radius:6px;
  border:1.5px solid var(--sand);
  background:none;
  font-size:19px;
  cursor:pointer;
  transition:all .2s;
}
.btn-wishlist-big:hover{
  border-color:var(--rose);
  color:var(--rose);
}
.accordion{
  background: transparent;
  /* background-color: #3D6B4F; */
  /* border: 5px solid #000; */
}
.accordion-item{
  background-color: transparent;
  border-bottom:1px solid var(--sand);
}

.accordion-item {
  border-right: none; /* removes the outer border right hand side */
  border-left: none; /* removes the outer border left hand side */
}

.accordion-button {
  border: none; /* removes the header border */
  box-shadow: none; /* removes the shadow when active */
}


.accordion-btn{
  width:100%;
  padding:14px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:none;
  border:none;
  cursor:pointer;
  font-size:14px;
  font-weight:500;
  color:var(--deep);
  text-align:left;
}
.accordion-icon{
  font-size:18px;
  transition:transform .3s;
  color:var(--bark);
}
.accordion-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s cubic-bezier(.22,1,.36,1);
}
.accordion-content.open{
  max-height:400px;
}
.accordion-content p{
  padding:0 0 14px;
  font-size:13px;
  color:#667;
  line-height:1.7;
}
.ingredient-tags{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  padding-bottom:14px;
}
.ing-tag{
  padding:4px 12px;
  border-radius:20px;
  background:var(--lsage);
  color:var(--green);
  font-size:12px;
  font-weight:500;
}
/* ============================================================
   CART PAGE (overlay)
============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(28,20,16,.65);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

/* When open, make overlay clickable and visible */
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto; /* changed from 'all' to 'auto' */
}

.cart-panel {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1101;
  width: min(500px, 100vw);
  background: var(--warm);
  transform: translateX(100%); /* hidden off-screen */
  transition: transform .5s cubic-bezier(.22,1,.36,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* When open, slide panel into view */
.cart-panel.open {
  transform: translateX(0);
}

/* Header */
.cart-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
}
.cart-header span {
  font-size: 13px;
  color: #999;
}

/* Items */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #aaa;
  gap: 12px;
  padding: 40px;
}
.cart-empty-icon {
  font-size: 48px;
  opacity: .4;
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--sand);
  align-items: flex-start;
}
.cart-item:last-child {
  border-bottom: none;
}
.ci-img {
  width: 72px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--sand);
}
.ci-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ci-info {
  flex: 1;
  min-width: 0;
}
.ci-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.ci-variant {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}
.ci-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ci-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--sand);
  border-radius: 4px;
  overflow: hidden;
}
.ci-qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 15px;
  transition: background .2s;
}
.ci-qty-btn:hover {
  background: var(--sand);
}
.ci-qty-num {
  width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.ci-price {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
}
.ci-remove {
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  cursor: pointer;
  color: #ccc;
  font-size: 16px;
  transition: color .2s;
  flex-shrink: 0;
}
.ci-remove:hover {
  color: var(--rose);
}

/* order summary */
.cart-summary {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--sand);
  background: var(--warm);
  flex-shrink: 0;
}
.cs-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}
.cs-row.total {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--sand);
}
.cs-row.discount {
  color: var(--green);
}
.btn-checkout {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  background: var(--deep);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
  text-align: center;
}
.btn-checkout:hover {
  background: var(--bark);
}
.btn-continue {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 13px;
  background: none;
  color: var(--deep);
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: border-color .2s;
  text-align: center;
}
.btn-continue:hover {
  border-color: var(--deep);
}



/* ============================================================
   CHECKOUT PAGE (overlay)
============================================================ */
.checkout-overlay{
  position:fixed;
  inset:0;
  z-index:1200;
  background:var(--cream);
  overflow-y:auto;
  opacity:0;
  pointer-events:none;
  transition:opacity .4s;
}
.checkout-overlay.open{
  opacity:1;
  pointer-events:auto;
}
.checkout-wrap{
  max-width:1000px;margin:0 auto;
  padding:32px 24px 80px;
  min-height:100vh;
}
.checkout-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:36px;
  flex-wrap:wrap;
  gap:12px;
}
.checkout-brand{
  font-family:'Playfair Display',serif;
  font-size:22px;
  font-weight:700;
  color:var(--deep);
}
.checkout-steps{
  display:flex;
  align-items:center;
  gap:0;
  font-size:12px;
  letter-spacing:.06em;
}
.cs-step{
  padding:8px 16px;
  border-radius:20px;
  color:#aaa;
  font-weight:500;
}
.cs-step.active{
  background:var(--deep);
  color:#fff;
}
.cs-step.done{
  color:var(--green);
}
.cs-sep{
  color:#ddd;
  margin:0 4px;
}
.checkout-grid{
  display:grid;
  grid-template-columns:1fr 380px;
  gap:32px;
  align-items:start;
}
.checkout-form-section{}
.co-section{
  background:#fff;
  border-radius:12px;
  border:1px solid var(--sand);
  padding:28px;
  margin-bottom:20px;
}
.co-section h3{
  font-family:'Playfair Display',serif;
  font-size:18px;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:10px;
}
.co-section h3 span{
  width:26px;
  height:26px;
  border-radius:50%;
  background:var(--deep);
  color:#fff;
  font-size:12px;
  font-family:'Outfit',sans-serif;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
}
.cof-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.cof-grid.full{
  grid-template-columns:1fr;
}
.co-input{
  width:100%;
  padding:12px 14px;
  border:1.5px solid var(--sand);
  border-radius:6px;
  font-size:14px;
  color:var(--deep);
  outline:none;
  transition:border-color .2s;
  background:#fff;
}
.co-input:focus{
  border-color:var(--bark);
}
.co-label{
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#888;
  margin-bottom:5px;
  display:block;
}
.delivery-option{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px;
  border:1.5px solid var(--sand);
  border-radius:6px;
  cursor:pointer;
  margin-bottom:8px;
  transition:border-color .2s;
}
.delivery-option.selected{
  border-color:var(--deep);
  background:rgba(28,20,16,.03);
}
.do-left{
  display:flex;
  align-items:center;
  gap:12px;
}
.do-radio{
  width:18px;
  height:18px;
  border-radius:50%;
  border:2px solid var(--sand);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:border-color .2s;
}
.delivery-option.selected .do-radio{
  border-color:var(--deep);
}
.do-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--deep);
  display:none;
}
.delivery-option.selected .do-dot{
  display:block;
}
.do-name{
  font-size:14px;
  font-weight:500;
}
.do-desc{
  font-size:12px;
  color:#888;
}
.do-price{
  font-family:'Playfair Display',serif;
  font-size:15px;
  font-weight:600;
}
.payment-option{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border:1.5px solid var(--sand);
  border-radius:6px;
  cursor:pointer;
  margin-bottom:8px;
  transition:border-color .2s;
}
.payment-option.selected{
  border-color:var(--deep);
  background:rgba(28,20,16,.03);
}
.po-icon{
  font-size:22px;
}
.po-name{
  font-size:14px;
  font-weight:500;
}
.po-desc{
  font-size:12px;
  color:#888;
}
.card-fields{
  margin-top:14px;
  display:none;
}
.card-fields.show{
  display:block;
}

/* order summary sidebar */
.co-summary{
  background:#fff;
  border:1px solid var(--sand);
  border-radius:12px;
  padding:24px;
  position:sticky;
  top:24px;
}
.co-summary h3{
  font-family:'Playfair Display',serif;
  font-size:18px;
  margin-bottom:18px;
}
.cos-item{
  display:flex;
  gap:12px;
  margin-bottom:14px;
  align-items:flex-start;
}
.cos-img{
  width:52px;
  height:64px;
  border-radius:5px;
  overflow:hidden;
  background:var(--sand);
  flex-shrink:0;
}
.cos-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.cos-name{
  font-size:13px;
  font-weight:500;
  margin-bottom:2px;
}
.cos-variant{
  font-size:11px;
  color:#aaa;
}
.cos-price{
  font-family:'Playfair Display',serif;
  font-size:14px;
  font-weight:600;
  margin-left:auto;
  flex-shrink:0;
}
.cos-divider{
  height:1px;
  background:var(--sand);
  margin:14px 0;
}
.cos-row{
  display:flex;
  justify-content:space-between;
  font-size:13px;
  margin-bottom:8px;
  color:#667;
}
.cos-total{
  font-family:'Playfair Display',serif;
  font-size:20px;
  font-weight:700;
  display:flex;
  justify-content:space-between;
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid var(--sand);
}
.btn-place-order{
  display:block;
  width:100%;
  margin-top:20px;
  padding:16px;
  background:var(--deep);
  color:#fff;
  border:none;
  border-radius:8px;
  font-size:14px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .3s;
}
.btn-place-order:hover{
  background:var(--bark);
}
.secure-note{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  margin-top:12px;
  font-size:12px;
  color:#aaa;
}

/* ============================================================
   ORDER SUCCESS
============================================================ */
.order-success {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:60px 24px;
  min-height:60vh;
  background:transparent; /* ensures it blends with any theme */
}

.success-ring {
  width:80px;
  height:80px;
  border-radius:50%;
  background:var(--lsage); /* uses your theme variable */
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  margin-bottom:20px;
  box-shadow:0 4px 12px rgba(0,0,0,0.15); /* subtle glow */
  animation:popIn .5s cubic-bezier(.22,1,.36,1) both;
}

@keyframes popIn {
  from { transform:scale(0); opacity:0; }
  to { transform:scale(1); opacity:1; }
}

.order-success h2 {
  font-family:'Playfair Display',serif;
  font-size:32px;
  margin-bottom:10px;
  color:var(--deep);
}

.order-success p {
  font-size:15px;
  color:#666;
  max-width:380px;
  line-height:1.65;
}

.order-num {
  margin-top:20px;
  padding:14px 28px;
  background:var(--sand);
  border-radius:8px;
  font-size:14px;
  font-weight:600;
  color:var(--deep);
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.btn-back-shop {
  margin-top:28px;
  padding:14px 36px;
  background:var(--deep);
  color:#fff;
  border:none;
  border-radius:8px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .3s, transform .2s;
}

.btn-back-shop:hover {
  background:var(--bark);
  transform:translateY(-2px);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer{
  background:var(--deep);
  color:rgba(255,255,255,.5);
  /* padding:56px 72px 28px; */
}
.footer-top{
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr 1fr;
  gap:44px;
  margin-bottom:44px;
}
.footer-brand{
  font-family:'Playfair Display',serif;
  font-size:21px;
  color:#fff;
  margin-bottom:12px;
}
.footer-tagline{
  font-size:13px;
  line-height:1.7;
}

.footer-col h4{
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--taupe);
  margin-bottom:16px;
}
.footer-col ul{
  list-style:none;
}
.footer-col li{
  margin-bottom:9px;
}
.footer-col a{
  font-size:13px;
  color:rgba(255,255,255,.45);
  text-decoration:none;
  transition:color .2s;
}
.footer-col a:hover{
  color:var(--taupe);
}
.footer-bottom{
  /* border-top:1px solid rgba(255,255,255,.07); */
  padding-top:22px;
  display:flex;
  justify-content:space-between;
  font-size:12px;
  flex-wrap:wrap;
  gap:8px;
}

/* ============================================================
   TOAST
============================================================ */
#customToast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 9999;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  white-space: nowrap;
  max-width: 90vw;
  text-overflow: ellipsis;
  overflow: hidden;
}

#customToast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Variants */
#customToast.success {
  background: linear-gradient(135deg, #43cea2, #185a9d); /* green-blue */
}

#customToast.error {
  background: linear-gradient(135deg, #ff416c, #ff4b2b); /* red */
}

#customToast.warning {
  background: linear-gradient(135deg, #f7971e, #ffd200); /* orange-yellow */
}

#customToastIcon {
  font-size: 18px;
}

#customToastMsg {
  font-size: 15px;
}


/* #customToast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 9999;
  background: linear-gradient(135deg, #ff6a00, #ee0979); vibrant orange-pink gradient
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  white-space: nowrap;
  max-width: 90vw;
  text-overflow: ellipsis;
  overflow: hidden;
}

#customToast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
} */

/* 
#customToast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 9999;
  background: linear-gradient(135deg, #43cea2, #185a9d); green-blue gradient
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

#customToast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#customToastIcon {
  font-size: 18px;
}

#customToastMsg {
  font-size: 15px;
} */


/* ============================================================
   RESPONSIVE — TABLET  ≤ 1100px
============================================================ */
@media(max-width:1100px){
  .product-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .review-grid{
    grid-template-columns:1fr 1fr;
  }
  .footer-top{
    grid-template-columns:1fr 1fr;
  }
  .benefits{
    grid-template-columns:1fr 1fr;
  }
  .bundle-right{
    display:none;
  }
  .checkout-grid{
    grid-template-columns:1fr;
  }
  .co-summary{
    position:static;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE  ≤ 768px
============================================================ */
@media(max-width:768px){
  :root{
    --nav-h:56px;
  }

  /* navbar */
  #mainHeader{
    padding:0 16px;
  }
  .nav-center{
    display:none;
  }
  .nav-hamburger{
    display:flex;
  }
  .mobile-drawer{
    display:block;
  }
  .nav-icon-btn{
    width:34px;
    height:34px;
    font-size:14px;
  }

  /* hero */
  .page-hero{
    height:340px;
  }
  .hero-content{
    padding:28px 20px;
  }
  .hero-title{
    font-size:44px;
  }
  .hero-sub{
    font-size:13px;
    max-width:100%;
  }
  .hero-stats{
    display:none;
  }

  /* filter */
  .shop-controls{
    padding:0 12px;
    gap:8px;
  }
  .filter-tab{
    padding:14px 12px;
    font-size:11px;
  }
  .sort-select{
    font-size:11px;
    padding:6px 10px;
  }

  /* grid */
  .shop-layout{
    padding:32px 16px 56px;
  }
  .grid-title{
    font-size:26px;
  }
  .product-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }
  .card-name{
    font-size:14px;
  }
  .card-desc{
    display:none;
  }
  .card-price{
    font-size:15px;
  }

  /* bundle */
  .bundle-banner{
    margin:0 16px 48px;
    padding:28px 22px;
  }
  .bundle-title{
    font-size:28px;
  }
  .bundle-price{
    font-size:26px;
  }
  .bundle-right{
    display:none;
  }

  /* benefits */
  .benefits{
    margin:0 16px 48px;
    grid-template-columns:1fr 1fr;
  }
  .benefit{
    padding:22px 16px;
  }
  .benefit-title{
    font-size:14px;
  }

  /* reviews */
  .reviews-section{
    padding:0 16px 48px;
  }
  .review-grid{
    grid-template-columns:1fr;
  }
  .rfg{
    grid-template-columns:1fr;
  }
  .write-review{
    padding:24px 18px;
  }
  .overall-score{
    flex-direction:column;
    gap:10px;
  }
  .big-score{
    font-size:52px;
  }

  /* detail panel */
  .detail-panel{
    width:100vw;
  }
  .detail-body{
    flex-direction:column;
  }
  .detail-images{
    width:100%;
    height:260px;
    position:relative;
    top:0;
  }
  .detail-thumb-row{
    height:72px;
  }
  .detail-info{
    padding:20px 18px;
  }
  .detail-name{
    font-size:22px;
  }
  .detail-price{
    font-size:26px;
  }
  .add-row{
    flex-wrap:wrap;
  }
  .btn-add-cart{
    min-width:0;
    width:100%;
    order:3;
  }
  .qty-control{
    flex:0 0 auto;
  }
  .btn-wishlist-big{
    flex:0 0 auto;
  }

  /* cart panel */
  .cart-panel{
    width:100vw;
  }

  /* checkout */
  .checkout-wrap{
    padding:20px 14px 60px;
  }
  .checkout-header{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .cof-grid{
    grid-template-columns:1fr;
  }
  .co-section{
    padding:20px 16px;
  }

  /* footer */
  .site-footer{
    padding:36px 16px 20px;
  }
  .footer-top{
    grid-template-columns:1fr;
    gap:24px;
  }
  .footer-bottom{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  ≤ 380px
============================================================ */
@media(max-width:380px){
  .hero-title{
    font-size:36px;
  }
  .product-grid{
    grid-template-columns:1fr;
  }
  .benefits{
    grid-template-columns:1fr;
  }
  .bundle-title{
    font-size:24px;
  }
  .cart-panel{
    width:100vw;
  }
  .login-card{
    padding:28px 20px;
  }
}





.pagination .page-link {
  border-radius: 50px;           /* pill-shaped buttons */
  margin: 0 5px;
  font-weight: 700;
  color: var(--taupe);                /* Bootstrap primary */
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.pagination .page-link:hover {
  background-color: var(--rose);
  color: #fff;
  transform: translateY(-2px);   /* subtle lift on hover */
}

.pagination .page-item.active .page-link {
  background-color: var(--rose);
  border-color: var(--rose);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(13,110,253,0.3);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  font-weight: 500;
}
