/* ── Nav icon buttons ── */
.nav-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: none; border: none; color: inherit;
  position: relative; padding: 0; cursor: pointer;
}
.nav-icon-btn:hover { color: var(--amber, #C4923A); }
.nav-icon-btn i { font-size: 1.05rem; }
.wishlist-badge {
  position: absolute; top: 4px; right: 2px;
  background: var(--amber, #C4923A); color: #fff;
  font-size: .58rem; padding: 1px 5px; border-radius: 10px; font-weight: 700;
  display: none;
}

/* ── Search Overlay ── */
.search-overlay {
  position: fixed; inset: 0; background: rgba(20,15,10,.85);
  z-index: 2000; display: none; align-items: flex-start; justify-content: center;
}
.search-overlay.open { display: flex; }
.search-panel {
  background: #fff; margin-top: 8vh; max-width: 640px; width: 92%;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.search-header {
  display: flex; align-items: center; padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.search-header input {
  flex: 1; border: none; outline: none; font-size: 1.1rem; padding: 8px;
  font-family: 'Cormorant Garamond', serif;
}
.search-header button {
  background: none; border: none; font-size: 1.6rem; color: var(--tan, #a89878); cursor: pointer;
  padding: 0 6px;
}
.search-results { max-height: 60vh; overflow-y: auto; }
.search-result {
  display: flex; gap: 12px; padding: 12px 16px;
  text-decoration: none; color: inherit;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.search-result:hover { background: #f5ede0; }
.search-result img { width: 48px; height: 60px; object-fit: cover; background: #f5ede0; }
.search-noimg { width:48px; height:60px; background:#f5ede0; display:flex; align-items:center; justify-content:center; opacity:.4; }
.search-result-name { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1rem; }
.search-result-meta { font-size: .78rem; color: var(--tan, #a89878); margin-top: 2px; }
.search-hint { padding: 20px 16px; color: var(--tan, #a89878); font-size: .88rem; text-align: center; }

/* ── Cart Drawer ── */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(20,15,10,.55);
  z-index: 1900; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: -420px; height: 100vh; width: 400px; max-width: 92vw;
  background: #fff; z-index: 1950; display: flex; flex-direction: column;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.cart-drawer.open { right: 0; }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid rgba(0,0,0,.08);
}
.cart-drawer-head h5 { margin: 0; font-family: 'Cormorant Garamond', serif; font-weight: 700; }
.drawer-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--tan); }
.drawer-progress { padding: 12px 20px; background: #f9f2e6; }
.drawer-progress-text { font-size: .78rem; color: var(--smoke, #4a4038); margin-bottom: 6px; }
.drawer-progress-bar { height: 4px; background: rgba(196,146,58,.2); border-radius: 2px; overflow: hidden; }
.drawer-progress-fill { height: 100%; background: var(--amber, #C4923A); width: 0; transition: width .4s; }
.drawer-items { flex: 1; overflow-y: auto; padding: 12px 16px; }
.drawer-empty { padding: 40px 20px; text-align: center; color: var(--tan); }
.drawer-item {
  display: grid; grid-template-columns: 60px 1fr auto 20px;
  gap: 10px; padding: 12px 4px; border-bottom: 1px solid rgba(0,0,0,.05);
  align-items: center;
}
.drawer-item img { width: 60px; height: 72px; object-fit: cover; background: #f5ede0; }
.drawer-item-noimg { width: 60px; height: 72px; background: #f5ede0; display: flex; align-items: center; justify-content: center; opacity: .4; }
.drawer-item-name { font-family: 'Cormorant Garamond', serif; font-size: .95rem; font-weight: 600; }
.drawer-item-price { font-size: .78rem; color: var(--cognac, #6B2D0F); font-weight: 600; margin: 2px 0; }
.drawer-item-qty { display: inline-flex; align-items: center; border: 1px solid rgba(0,0,0,.12); }
.drawer-item-qty button { background: none; border: none; width: 22px; height: 24px; cursor: pointer; font-size: .8rem; }
.drawer-item-qty span { width: 22px; text-align: center; font-size: .8rem; font-weight: 700; border-left: 1px solid rgba(0,0,0,.08); border-right: 1px solid rgba(0,0,0,.08); }
.drawer-item-line { font-family: 'Cormorant Garamond', serif; font-weight: 700; color: var(--cognac, #6B2D0F); }
.drawer-item-x { background: none; border: none; font-size: 1.2rem; color: #c0b0a0; cursor: pointer; padding: 0; }
.drawer-footer { padding: 16px 20px; border-top: 1px solid rgba(0,0,0,.08); }
.drawer-subtotal { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: .95rem; }

/* ── Toast ── */
.kl-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(30px);
  background: var(--ink, #1a1310); color: #fff; padding: 12px 22px; border-radius: 3px;
  z-index: 3000; font-size: .88rem; opacity: 0; transition: all .3s;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.kl-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Sticky ATC ── */
.sticky-atc {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid rgba(0,0,0,.08);
  padding: 10px 16px;
  display: none; justify-content: space-between; align-items: center;
  z-index: 900; box-shadow: 0 -6px 20px rgba(0,0,0,.06);
}
.sticky-atc.visible { display: flex; }
.sticky-atc .s-name { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: .95rem; }
.sticky-atc .s-price { font-size: .85rem; color: var(--cognac, #6B2D0F); font-weight: 700; }
.sticky-atc .s-btn {
  background: var(--cognac, #6B2D0F); color: #fff; border: none;
  padding: 10px 18px; font-size: .82rem; letter-spacing: .05em;
  font-weight: 600; cursor: pointer;
}
@media (min-width: 992px) { .sticky-atc { display: none !important; } }

/* ── Zoom overlay ── */
.zoom-overlay {
  position: fixed; inset: 0; background: rgba(20,15,10,.95);
  display: none; align-items: center; justify-content: center;
  z-index: 3500; cursor: zoom-out;
}
.zoom-overlay.open { display: flex; }
.zoom-overlay img { max-width: 95vw; max-height: 90vh; object-fit: contain; }
.pdp-main-img { cursor: zoom-in; }

/* ── PDP additions ── */
.review-summary { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; margin-bottom: 12px; }
.review-summary.faded { opacity: .6; }
.stars-inline { color: var(--amber, #C4923A); letter-spacing: 1px; font-size: .95rem; }
.stars-inline.lg { font-size: 1.4rem; }
.stars-inline.sm { font-size: .82rem; }
.review-summary-text { font-size: .82rem; color: var(--smoke, #4a4038); }
.emi-hint { font-size: .78rem; color: var(--smoke, #4a4038); background: #f9f2e6; padding: 8px 12px; border-left: 3px solid var(--amber); margin-bottom: 12px; }
.engraving-wrap { background: #fff; border: 1px dashed rgba(196,146,58,.4); padding: 14px; margin: 16px 0; }
.engraving-wrap label { display: flex; align-items: flex-start; gap: 8px; font-size: .84rem; cursor: pointer; }
.engraving-wrap input[type=text] { width: 100%; margin-top: 10px; padding: 8px 12px; border: 1px solid rgba(0,0,0,.15); font-family: 'Cormorant Garamond', serif; font-size: 1rem; }
.engraving-wrap small { display: block; margin-top: 4px; color: var(--tan, #a89878); font-size: .75rem; }
.pincode-wrap { margin: 14px 0; }
.pincode-wrap label { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--tan); margin-bottom: 6px; font-weight: 600; }
.pincode-row { display: flex; gap: 8px; }
.pincode-row input { flex: 1; padding: 10px 12px; border: 1px solid rgba(0,0,0,.15); font-size: .9rem; }
.pincode-row button { background: var(--ink); color: #fff; border: none; padding: 10px 18px; font-size: .75rem; letter-spacing: .06em; cursor: pointer; }
.pincode-result { margin-top: 8px; padding: 10px 12px; font-size: .82rem; background: #f5ede0; }
.pincode-result.ok { background: #e6f4e6; color: #2e6d2e; }
.pincode-result.err { background: #fce8e8; color: #c62828; }
.btn-wishlist-icon { background: #fff; border: 1px solid rgba(0,0,0,.12); width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: var(--tan); }
.btn-wishlist-icon:hover, .btn-wishlist-icon.is-wished { color: #d84040; border-color: #d84040; }
.notify-stock-wrap { margin-top: 20px; padding: 14px; background: #f9f2e6; border-left: 3px solid var(--amber); }
.notify-stock-wrap p { margin: 0 0 8px; font-size: .82rem; color: var(--smoke); font-weight: 600; }
.notify-stock-wrap form { display: flex; gap: 8px; }
.notify-stock-wrap input { flex: 1; padding: 8px 12px; border: 1px solid rgba(0,0,0,.15); }
.notify-stock-wrap button { background: var(--cognac); color: #fff; border: none; padding: 8px 16px; font-size: .78rem; cursor: pointer; }
.notify-stock-wrap #notifyStockMsg { font-size: .78rem; color: var(--amber); margin-top: 6px; }

/* ── Reviews section ── */
.reviews-section { margin-top: 72px; padding-top: 48px; border-top: 1px solid rgba(0,0,0,.07); }
.review-agg-block { text-align: center; padding: 20px; background: #fff; margin-top: 20px; }
.review-agg-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--cognac); line-height: 1; }
.review-agg-count { font-size: .78rem; color: var(--tan); margin-top: 6px; }
.review-list { display: flex; flex-direction: column; gap: 16px; }
.review-card { background: #fff; padding: 18px 20px; border: 1px solid rgba(0,0,0,.05); }
.review-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.review-name { font-weight: 700; font-size: .95rem; }
.verified-tag { background: #e6f4e6; color: #2e6d2e; font-size: .68rem; padding: 2px 6px; margin-left: 4px; font-weight: 600; }
.review-date { font-size: .75rem; color: var(--tan); }
.review-title { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.1rem; margin: 4px 0; }
.review-body { font-size: .9rem; color: var(--smoke); line-height: 1.7; margin: 0; }
.review-img { max-width: 140px; margin-top: 10px; }
.review-form-box { background: #fff; padding: 24px; margin-top: 30px; border: 1px solid rgba(0,0,0,.05); }
.review-form-box h5 { font-family: 'Cormorant Garamond', serif; font-weight: 700; margin-bottom: 16px; }
.star-picker { display: flex; gap: 4px; font-size: 1.5rem; color: rgba(0,0,0,.2); padding: 8px 0; cursor: pointer; }
.star-picker i.picked { color: var(--amber); }

/* ── Cross-sell ── */
.cross-sell-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(0,0,0,.07); }

/* ── Checkout ── */
.checkout-h { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--amber); font-weight: 700; margin-bottom: 24px; }
.discount-code-wrap { padding: 16px 0; margin-top: 8px; border-top: 1px solid rgba(0,0,0,.07); }
.loyalty-redeem-wrap { padding: 12px 0; border-top: 1px solid rgba(0,0,0,.07); }
.loyalty-redeem-wrap label { display: flex; align-items: center; gap: 8px; font-size: .82rem; cursor: pointer; }
.gift-wrap-check label { display: flex; align-items: center; gap: 8px; font-size: .9rem; cursor: pointer; }
.payment-methods-mini { display: flex; align-items: center; gap: 6px; font-size: .68rem; color: var(--tan); margin-bottom: 8px; justify-content: center; letter-spacing: .06em; }

/* ── Modal ── */
.kl-modal { position: fixed; inset: 0; background: rgba(20,15,10,.7); z-index: 3200; display: none; align-items: center; justify-content: center; padding: 20px; }
.kl-modal.open { display: flex; }
.kl-modal-inner { background: #fff; padding: 30px 26px; max-width: 400px; width: 100%; position: relative; }
.kl-modal-close { position: absolute; top: 8px; right: 12px; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--tan); }
.kl-modal-inner h5 { font-family: 'Cormorant Garamond', serif; font-weight: 700; margin-bottom: 10px; }
.kl-modal-inner p { font-size: .88rem; color: var(--smoke); }
.kl-modal-inner input { font-size: 1.3rem; text-align: center; letter-spacing: 8px; padding: 12px; }
.btn-link-plain { background: none; border: none; color: var(--cognac); font-size: .8rem; text-decoration: underline; cursor: pointer; }

/* ── Cart page: ship progress ── */
.ship-progress-card { background: #fff; padding: 14px 18px; margin-bottom: 16px; border-left: 3px solid var(--amber); }
.ship-progress-text { font-size: .85rem; color: var(--smoke); margin-bottom: 8px; }
.ship-progress-bar { height: 5px; background: rgba(196,146,58,.15); }
.ship-progress-fill { height: 100%; background: var(--amber); width: 0; transition: width .4s; }

/* ── Filter panel ── */
.filter-panel { display: none; background: #fff; padding: 20px; border: 1px solid rgba(0,0,0,.07); margin-bottom: 20px; }
.filter-panel.open { display: block; }
.filter-panel label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--tan); font-weight: 600; margin-bottom: 4px; }

/* ── Wishlist heart on cards ── */
.wishlist-heart { position: absolute; top: 10px; right: 10px; z-index: 3; background: rgba(255,255,255,.9); border: none; width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: var(--tan); }
.wishlist-heart:hover, .wishlist-heart.is-wished { color: #d84040; }
.wishlist-heart i { font-size: .95rem; }

/* ── Press strip ── */
.press-strip { padding: 40px 0; background: #fff; border-top: 1px solid rgba(0,0,0,.06); border-bottom: 1px solid rgba(0,0,0,.06); }
.press-eyebrow { font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--tan); text-align: center; margin-bottom: 18px; font-weight: 600; }
.press-logos { display: flex; align-items: center; justify-content: center; gap: 34px; flex-wrap: wrap; }
.press-logos img { max-height: 40px; opacity: .55; filter: grayscale(1); transition: all .25s; }
.press-logos img:hover { opacity: 1; filter: none; }
.press-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--tan); }

/* ── Blog card ── */
.blog-card-mini { display: block; background: #fff; text-decoration: none; color: inherit; height: 100%; }
.blog-card-mini img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #f5ede0; }
.blog-card-mini-body { padding: 20px; }
.blog-card-mini h5 { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.2rem; color: var(--ink); margin-bottom: 8px; }
.blog-card-mini p { font-size: .85rem; color: var(--smoke); line-height: 1.7; margin: 0; }
.blog-card-mini:hover h5 { color: var(--cognac); }

/* Ensure body has data attribute for drawer */
