/* Kalidara — storefront styles (matched to original Shopify theme) */
:root {
  --ft: "Instrument Sans", "Segoe UI", Arial, sans-serif;
  --black: #2b1a14;
  --text: #33241d;
  --muted: #7d6a60;
  --border: #eee4dc;
  --bg: #ffffff;
  --brand: #8a3a2a;        /* deep terracotta — from brand banner */
  --brand-dark: #5f2419;
  --gold: #c9a15f;
  --cream: #faf3ec;
  --sale: #8a3a2a;
  --container: 1300px;
  --gutter: 15px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ft);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 14px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--brand-dark);
  color: #f5e8d8;
  text-align: center;
  font-size: 13px;
  padding: 8px 15px;
  letter-spacing: .4px;
}
.announcement-bar a { color: #f5e8d8; }

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
}
.logo img { height: 46px; width: auto; }
.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .2px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s;
}
.main-nav a:hover { border-color: var(--black); }
.header-icons { display: flex; align-items: center; gap: 18px; }
.header-icons a { display: inline-flex; position: relative; color: var(--black); }
.cart-count {
  position: absolute;
  top: -7px; right: -9px;
  background: var(--black);
  color: #fff;
  font-size: 10px;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.menu-toggle { display: none; background: none; border: none; color: var(--black); }
.nav-overlay { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  padding: 13px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  transition: background .15s, color .15s;
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-outline { background: #fff; color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-block { display: block; width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---------- Sections ---------- */
.section { padding: 45px 0; }
.section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--black);
}
.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 14px;
}
.view-all-wrap { text-align: center; margin-top: 30px; }

/* ---------- Hero banner ---------- */
.hero-banner img { width: 100%; height: auto; }
.hero-banner .mobile { display: none; }

/* ---------- Category grid (round icons) ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.cat-card { text-align: center; }
.cat-card .cat-img {
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--gold);
  padding: 4px;
  background: #fff;
  transition: border-color .2s;
}
.cat-card .cat-img img { border-radius: 50%; }
.cat-card:hover .cat-img { border-color: var(--brand); }
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .4s;
}
.cat-card:hover img { transform: scale(1.07); }
.cat-card h3 {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 18px;
}
.product-card { position: relative; }
.product-card .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 4;
  background: #f6f6f6;
}
.product-card .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .35s, transform .4s;
}
.product-card .card-img img.hover-img {
  position: absolute; inset: 0;
  opacity: 0;
}
.product-card:hover .card-img img.hover-img { opacity: 1; }
.product-card:hover .card-img img.main-img { transform: scale(1.03); }
.badge-sale, .badge-soldout {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 3px;
  z-index: 2;
}
.badge-sale { background: var(--sale); color: #fff; }
.badge-soldout { background: #888; color: #fff; }
.product-card h3 {
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* wishlist heart on card */
.wish-btn {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 5;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
  transition: transform .12s;
}
.wish-btn:hover { transform: scale(1.1); }
.wish-btn.active svg { fill: var(--brand); }

/* hover panel: sizes + add to cart (soft gradient fade) */
.card-hover-panel {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 4;
  background: linear-gradient(to top,
    rgba(255,255,255,.98) 0%,
    rgba(255,255,255,.94) 45%,
    rgba(255,255,255,.72) 72%,
    rgba(255,255,255,0) 100%);
  border-radius: 0 0 4px 4px;
  padding: 40px 14px 14px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .22s, transform .22s;
}
.product-card:hover .card-hover-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.chp-sizes {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.chp-size {
  min-width: 32px;
  padding: 5px 7px;
  border: 1px solid #d8c7b8;
  background: rgba(255,255,255,.85);
  border-radius: 16px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text);
  transition: all .12s;
}
.chp-size:hover { border-color: var(--brand); color: var(--brand); }
.chp-size.active { background: var(--brand); color: #fff; border-color: var(--brand); }
@keyframes kdshake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-4px)} 75%{transform:translateX(4px)} }
.chp-atc.shake { animation: kdshake .28s 2; border-color: var(--sale); color: var(--sale); }
.chp-atc {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  border-radius: 20px;
  padding: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .12s;
}
.chp-atc:hover { background: var(--brand); color: #fff; }

/* image preview dots on card */
.card-dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 116px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transition: opacity .18s;
}
.product-card:hover .card-dots { opacity: 1; }
.card-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.25);
  cursor: pointer;
}
.card-dots span.active { background: var(--brand); border-color: var(--brand); }

/* no hover devices: hide hover-only UI */
@media (hover: none) {
  .card-hover-panel, .card-dots { display: none; }
}
.price-row { margin-top: 6px; font-size: 14.5px; }
.price { font-weight: 600; color: var(--black); }
.compare-price { color: var(--muted); text-decoration: line-through; margin-left: 8px; font-size: 13px; }

/* ---------- Watch & Buy ---------- */
.video-scroller {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}
.video-card {
  flex: 0 0 230px;
  scroll-snap-align: start;
}
.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 8px;
  background: #000;
}
.video-card h3 {
  font-size: 13px;
  font-weight: 500;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card .price-row { font-size: 13.5px; }
.video-card .btn { padding: 9px 18px; font-size: 11px; margin-top: 8px; }

/* ---------- Feature strip ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  text-align: center;
}
.feature-item svg { margin: 0 auto 8px; display: block; color: var(--brand); }
.feature-item h4 { font-size: 14px; font-weight: 600; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 22px;
  background: var(--cream);
}
.testimonial .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; font-size: 14px; }
.testimonial h4 { font-size: 15px; margin-bottom: 8px; }
.testimonial p { font-size: 13.5px; color: var(--muted); }
.testimonial .name { margin-top: 14px; font-weight: 600; color: var(--black); font-size: 13.5px; }

/* ---------- Collection page ---------- */
.collection-header { text-align: center; padding: 35px 0 10px; }
.collection-header h1 {
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0 24px;
  font-size: 13.5px;
  color: var(--muted);
}
.collection-toolbar select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}

/* ---------- Product page ---------- */
.breadcrumb {
  font-size: 12.5px;
  color: var(--muted);
  padding: 16px 0 0;
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { margin: 0 5px; }
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 45px;
  padding: 18px 0 35px;
}
.gallery { display: grid; grid-template-columns: 76px 1fr; gap: 12px; align-items: start; }
.thumbs { display: flex; flex-direction: column; gap: 10px; max-height: 640px; overflow-y: auto; }
.thumbs img {
  width: 76px; height: 100px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .12s;
}
.thumbs img.active { border-color: var(--brand); }
.main-image { position: relative; overflow: hidden; border-radius: 10px; }
.mi-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mi-track::-webkit-scrollbar { display: none; }
.mi-slide { flex: 0 0 100%; scroll-snap-align: start; }
.mi-slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #f6f6f6;
  display: block;
}
.mi-dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 3;
}
.mi-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.2);
  cursor: pointer;
  transition: all .15s;
}
.mi-dots span.active { background: var(--brand); border-color: var(--brand); width: 20px; border-radius: 5px; }

.pd-price-row { display: flex; align-items: center; gap: 10px; margin: 14px 0 4px; flex-wrap: wrap; }
.pd-price-row .price { font-size: 22px; font-weight: 700; }
.pd-price-row .compare-price { font-size: 15px; }
.pd-off {
  background: #e8f7ee;
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 14px;
}

/* offers strip */
.offer-strip {
  border: 1px dashed var(--gold);
  background: var(--cream);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 14px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.offer-item { display: flex; align-items: baseline; gap: 8px; font-size: 12.5px; flex-wrap: wrap; }
.oi-tag { color: var(--brand-dark); font-size: 13px; white-space: nowrap; }
.oi-text { color: var(--muted); }

/* trust icons */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 8px;
  margin: 18px 0 0;
  text-align: center;
}
.tr-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.tr-item svg { color: var(--brand); }
.tr-item span { font-size: 11px; line-height: 1.35; color: var(--muted); font-weight: 600; }

/* accordions */
.pd-acc { max-width: 900px; margin: 6px auto 30px; }
.pd-acc details { border-bottom: 1px solid var(--border); }
.pd-acc summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}
.pd-acc summary::-webkit-details-marker { display: none; }
.pd-acc summary::after { content: "+"; font-size: 20px; color: var(--muted); font-weight: 400; }
.pd-acc details[open] summary::after { content: "\2212"; }
.pd-acc details[open] summary { color: var(--brand); }
.pd-acc-body { padding: 0 4px 20px; font-size: 14px; }
.pd-acc-body table { border-collapse: collapse; width: 100%; max-width: 640px; }
.pd-acc-body td, .pd-acc-body th {
  padding: 9px 14px;
  text-align: left;
  font-size: 13.5px;
  border: none;
  border-bottom: 1px solid var(--border);
}
.pd-acc-body tr td:first-child { color: var(--muted); font-weight: 600; width: 40%; }
.pd-acc-body ul { list-style: disc; padding-left: 22px; }
.pd-acc-body p { margin: 8px 0; }

/* sticky mobile add-to-cart */
.sticky-atc {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
  padding: 10px 14px;
  z-index: 320;
  align-items: center;
  gap: 12px;
}
.sa-info { flex: 1; min-width: 0; }
.sa-price { font-size: 16px; font-weight: 700; color: var(--black); }
.sa-var { font-size: 11.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sa-btn { padding: 12px 26px; border-radius: 8px; }
.img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: none;
  color: var(--brand);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  z-index: 3;
  transition: background .12s, transform .12s;
}
.img-nav:hover { background: var(--brand); color: #fff; transform: translateY(-50%) scale(1.07); }
.img-nav.prev { left: 12px; }
.img-nav.next { right: 12px; }
.product-info h1 { font-size: 24px; font-weight: 600; line-height: 1.35; }
.product-info .price-row { font-size: 20px; margin: 14px 0 4px; }
.product-info .tax-note { font-size: 12.5px; color: var(--muted); margin-bottom: 18px; }
.opt-group { margin-bottom: 18px; }
.opt-group .opt-label { font-size: 13.5px; font-weight: 600; margin-bottom: 8px; display: flex; justify-content: space-between; }
.opt-label .sizechart-link {
  font-weight: 600;
  cursor: pointer;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.opt-label .sizechart-link:hover { text-decoration: underline; }
.opt-values { display: flex; flex-wrap: wrap; gap: 8px; }
.opt-btn {
  border: 1px solid #ccc;
  background: #fff;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 4px;
  transition: all .12s;
}
.opt-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.opt-btn.unavailable { opacity: .35; text-decoration: line-through; }
/* color swatches */
.swatch-values { gap: 14px; }
.opt-btn.swatch {
  border: none;
  background: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 52px;
}
.sw-dot {
  display: block;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid #ddd0c4;
  outline-offset: 2px;
  transition: outline-color .12s, transform .12s;
}
.sw-dot.light { border-color: #d8cfc2; }
.opt-btn.swatch:hover .sw-dot { outline-color: var(--gold); transform: scale(1.05); }
.opt-btn.swatch.active .sw-dot { outline: 2.5px solid var(--brand); }
.sw-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  max-width: 70px;
  text-align: center;
  line-height: 1.2;
}
.opt-btn.swatch.active .sw-name { color: var(--brand); }

/* buy row: qty + add to cart + buy now in one line, equal height */
.buy-row { display: flex; gap: 10px; margin: 20px 0 0; align-items: stretch; }
.buy-row .qty-field { flex: 0 0 auto; height: 50px; }
.buy-row .qty-field button { height: 100%; }
.buy-row .qty-field input { height: 100%; }
.buy-row .btn {
  flex: 1;
  height: 50px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qty-row { display: flex; gap: 12px; margin: 20px 0 12px; }
.qty-field {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.qty-field button { background: none; border: none; width: 38px; height: 46px; font-size: 17px; }
.qty-field input { width: 40px; border: none; text-align: center; font-size: 14px; outline: none; }
.atc-btn { flex: 1; }
.buynow-btn { width: 100%; margin-bottom: 18px; }
.delivery-note { font-size: 13px; color: var(--muted); border-top: 1px dashed var(--border); padding-top: 14px; }
.delivery-note p { margin-bottom: 6px; }

/* tabs */
.tabs { margin: 20px 0 40px; }
.tab-headers { display: flex; gap: 4px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.tab-headers button {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}
.tab-headers button.active { color: var(--brand); border-color: var(--brand); }
.tab-panel { display: none; padding: 22px 4px; font-size: 14px; }
.tab-panel.active { display: block; }
.tab-panel table { border-collapse: collapse; width: 100%; max-width: 640px; }
.tab-panel td, .tab-panel th {
  border: 1px solid var(--border);
  padding: 9px 14px;
  text-align: left;
  font-size: 13.5px;
}
.tab-panel ul { list-style: disc; padding-left: 22px; }
.tab-panel p { margin: 8px 0; }

/* FAQ */
.faq-section details {
  border-bottom: 1px solid var(--border);
  padding: 14px 4px;
}
.faq-section summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-section summary::after { content: "+"; font-size: 18px; color: var(--muted); }
.faq-section details[open] summary::after { content: "\2212"; }
.faq-section details p { margin-top: 10px; font-size: 13.5px; color: var(--muted); }

/* size chart modal */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 8px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  padding: 24px;
}
.modal-close {
  position: absolute;
  top: 10px; right: 14px;
  background: none; border: none;
  font-size: 26px;
  color: var(--muted);
}

/* ---------- Cart page ---------- */
.cart-page { padding: 35px 0 60px; }
.cart-page h1 { text-align: center; font-size: 26px; text-transform: uppercase; margin-bottom: 30px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding: 10px 8px;
}
.cart-table td { padding: 16px 8px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-info { display: flex; gap: 14px; align-items: center; }
.cart-item-info img { width: 64px; height: 84px; object-fit: cover; border-radius: 4px; }
.cart-item-info .v-title { color: var(--muted); font-size: 12.5px; }
.cart-item-info a { font-weight: 500; font-size: 14px; }
.remove-link { color: var(--muted); font-size: 12.5px; text-decoration: underline; background: none; border: none; }
.cart-summary { max-width: 380px; margin-left: auto; margin-top: 26px; text-align: right; }
.cart-summary .subtotal-row { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.cart-summary .note { color: var(--muted); font-size: 12.5px; margin-bottom: 16px; }
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty p { margin-bottom: 20px; color: var(--muted); }

/* ---------- Checkout (popup-card style) ---------- */
.checkout-wrap {
  background: var(--cream);
  min-height: 70vh;
  padding: 30px var(--gutter) 60px;
}
.checkout-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 30px rgba(90, 50, 30, .12);
  padding: 22px 24px 26px;
}
.co-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.co-head img { height: 34px; }
.co-secure {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: #1a9c50;
  background: #e8f7ee;
  padding: 5px 10px;
  border-radius: 20px;
}
.co-summary {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 14px;
  background: #fdfaf7;
}
.co-summary summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}
.co-summary summary::-webkit-details-marker { display: none; }
.co-summary summary::after { content: "▾"; color: var(--muted); margin-left: 8px; }
.co-summary[open] summary::after { content: "▴"; }
.co-summary summary span { flex: 1; }
.cos-items { padding: 0 16px; }
.cos-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px dashed var(--border);
  font-size: 13px;
}
.cos-item img { width: 44px; height: 58px; object-fit: cover; border-radius: 4px; }
.cos-item .t { flex: 1; }
.cos-item .t .v { color: var(--muted); font-size: 11.5px; }
.cos-totals { border-top: 1px solid var(--border); padding: 12px 16px; font-size: 13.5px; }
.cos-totals .row { display: flex; justify-content: space-between; margin-bottom: 6px; }
.cos-totals .grand { font-weight: 700; font-size: 15px; margin-bottom: 0; }
.cos-totals .discount-row { color: #256b31; }
.co-sec-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-dark);
  margin: 16px 0 10px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 4px; color: #5a4a40; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #ddd0c4;
  border-radius: 8px;
  outline: none;
  background: #fff;
  transition: border-color .12s;
}
.field input:focus, .field select:focus { border-color: var(--brand); }
.pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: 18px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(138, 58, 42, .35);
  transition: transform .12s, box-shadow .12s;
}
.pay-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(138, 58, 42, .45); }
.pay-btn[disabled] { opacity: .6; transform: none; cursor: not-allowed; }
.pay-note { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }
.pay-methods {
  display: flex;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.pay-methods .pm {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .4px;
  color: #6b5a4e;
  background: #f6efe8;
  border: 1px solid #e8dccf;
  padding: 4px 10px;
  border-radius: 14px;
}
.pay-methods .pm.upi { background: var(--brand); color: #fff; border-color: var(--brand); }
.co-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--muted);
}
.co-trust svg { vertical-align: -2px; color: #1a9c50; }

/* ---------- Static pages ---------- */
.static-page { max-width: 820px; margin: 0 auto; padding: 40px var(--gutter) 70px; }
.static-page h1 { font-size: 26px; margin-bottom: 24px; text-align: center; text-transform: uppercase; }
.static-page p { margin-bottom: 14px; }
.static-page ul, .static-page ol { padding-left: 24px; margin-bottom: 14px; }
.static-page h2, .static-page h3 { margin: 22px 0 10px; }

/* order success */
.success-box { max-width: 560px; margin: 60px auto; text-align: center; padding: 0 var(--gutter); }
.success-box .tick {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: #e8f7ee;
  color: #1a9c50;
  font-size: 36px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-box h1 { font-size: 24px; margin-bottom: 10px; }
.success-box p { color: var(--muted); margin-bottom: 8px; }
.success-box .btn { margin-top: 22px; }

/* search */
.search-page { padding: 40px 0 60px; }
.search-page h1 { text-align: center; font-size: 26px; text-transform: uppercase; margin-bottom: 24px; }
.search-bar { max-width: 560px; margin: 0 auto 36px; display: flex; }
.search-bar input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}
.search-bar button { border-radius: 0 4px 4px 0; }

/* ---------- Cart drawer ---------- */
.cart-drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 390;
}
body.drawer-open .cart-drawer-overlay { display: block; }
.cart-drawer {
  position: fixed;
  top: 0; right: -430px;
  width: 410px;
  max-width: 94vw;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 400;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0,0,0,.18);
  transition: right .28s ease;
}
body.drawer-open .cart-drawer { right: 0; }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.drawer-head h3 { font-size: 16px; text-transform: uppercase; letter-spacing: .5px; }
.drawer-head #drawerCount { color: var(--muted); font-weight: 400; font-size: 14px; }
.drawer-close {
  background: none; border: none;
  font-size: 26px;
  color: var(--muted);
  line-height: 1;
}
.drawer-body { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }
.drawer-items { flex: 1; overflow-y: auto; padding: 6px 20px; }
.drawer-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.drawer-item img {
  width: 64px; height: 84px;
  object-fit: cover;
  border-radius: 4px;
}
.di-info { flex: 1; min-width: 0; padding-right: 18px; }
.di-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.di-variant { color: var(--muted); font-size: 12px; margin-top: 3px; }
.di-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.di-qty {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.di-qty button {
  background: none; border: none;
  width: 28px; height: 28px;
  font-size: 15px;
  color: var(--black);
}
.di-qty span { min-width: 24px; text-align: center; font-size: 13px; }
.di-price { font-weight: 600; font-size: 13.5px; }
.di-remove {
  position: absolute;
  top: 12px; right: 0;
  background: none; border: none;
  color: #bbb;
  font-size: 18px;
  line-height: 1;
}
.di-remove:hover { color: var(--sale); }
.drawer-foot {
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  background: #fafafa;
}
.df-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 4px;
}
.df-note { color: var(--muted); font-size: 12px; margin-bottom: 12px; }
.df-viewcart {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  text-decoration: underline;
  color: var(--muted);
}
.drawer-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  padding: 30px;
}

/* ---------- Newsletter strip ---------- */
.newsletter-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 40px var(--gutter);
  text-align: center;
  margin-top: 50px;
}
.newsletter-strip h3 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-dark);
}
.newsletter-strip p { color: var(--muted); font-size: 13.5px; margin: 6px 0 18px; }
.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid #d8c7b8;
  border-right: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  background: #fff;
}
.newsletter-form button { border-radius: 0 4px 4px 0; }
.newsletter-msg { font-size: 13px; margin-top: 10px; display: none; }

/* ---------- Contact page ---------- */
.contact-page { padding-bottom: 60px; }
.contact-sub { text-align: center; color: var(--muted); margin: -8px 0 30px; font-size: 14px; }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 34px;
  max-width: 980px;
  margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.ci-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}
.ci-item svg { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.ci-item h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .5px; color: var(--brand-dark); margin-bottom: 3px; }
.ci-item a { font-size: 14px; font-weight: 600; }
.ci-item a:hover { color: var(--brand); }
.ci-item p { font-size: 12px; color: var(--muted); margin-top: 2px; }
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 4px 20px rgba(90,50,30,.06);
}
.contact-form-wrap .field { margin-bottom: 12px; }
.contact-thanks { text-align: center; padding: 30px 10px; }
.contact-thanks .tick {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #e8f7ee;
  color: #1a9c50;
  font-size: 30px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-thanks h3 { margin-bottom: 8px; }
.contact-thanks p { color: var(--muted); margin-bottom: 18px; }
@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-dark); color: #e8d5c4; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 36px;
  padding: 50px var(--gutter) 36px;
}
.footer-logo { height: 40px; width: auto; margin-bottom: 14px; }
.footer-col p { font-size: 13.5px; line-height: 1.7; }
.footer-col h4 {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 9px; font-size: 13.5px; }
.footer-col a:hover { color: #fff; }
.social-icons { display: flex; gap: 14px; margin-top: 16px; }
.social-icons a { color: #e8d5c4; }
.social-icons a:hover { color: var(--gold); }
.footer-pay {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px var(--gutter);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-pay span {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #f0e2d2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 5px 12px;
  border-radius: 4px;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 16px 0; font-size: 12.5px; text-align: center; color: #c9b39f; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  z-index: 350;
  transition: transform .15s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Coupon box (checkout) ---------- */
.coupon-box { margin-bottom: 16px; }
.coupon-box .cb-row { display: flex; gap: 8px; }
.coupon-box input {
  flex: 1;
  padding: 11px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-transform: uppercase;
  outline: none;
}
.coupon-box .btn { padding: 11px 18px; font-size: 12px; }
.coupon-applied {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eef7ee;
  border: 1px dashed #4c9a58;
  color: #256b31;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 13px;
}
.coupon-applied button { background: none; border: none; color: #256b31; text-decoration: underline; font-size: 12px; }
.coupon-err { color: var(--sale); font-size: 12.5px; margin-top: 6px; display: none; }
.summary-totals .discount-row { color: #256b31; }

/* ---------- Track order ---------- */
.track-page { max-width: 640px; margin: 0 auto; padding: 40px var(--gutter) 70px; }
.track-page h1 { text-align: center; font-size: 26px; text-transform: uppercase; margin-bottom: 8px; }
.track-page .sub { text-align: center; color: var(--muted); font-size: 13.5px; margin-bottom: 26px; }
.track-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.track-form input {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}
.track-result { border: 1px solid var(--border); border-radius: 8px; padding: 24px; background: var(--cream); }
.timeline { list-style: none; margin: 18px 0 6px; }
.timeline li {
  position: relative;
  padding: 0 0 22px 30px;
  font-size: 14px;
  color: var(--muted);
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 7px; top: 20px; bottom: 0;
  width: 2px;
  background: #ddcdbf;
}
.timeline li:last-child::before { display: none; }
.timeline li::after {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #e5d6c8;
  border: 2px solid #d0bca9;
}
.timeline li.done { color: var(--text); font-weight: 600; }
.timeline li.done::after { background: var(--brand); border-color: var(--brand); }
.track-err { color: var(--sale); text-align: center; font-size: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-layout { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 767px) {
  .section { padding: 32px 0; }
  .section-title { font-size: 20px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0; left: -290px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 200;
    transition: left .25s;
    padding: 24px 0;
    overflow-y: auto;
  }
  body.nav-open .main-nav { left: 0; }
  body.nav-open .nav-overlay {
    display: block;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 150;
  }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a {
    display: block;
    padding: 13px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  .header-inner { gap: 12px; }
  .logo { margin-right: auto; }
  .logo img { height: 38px; }
  .hero-banner .desktop { display: none; }
  .hero-banner .mobile { display: block; }
  /* categories: single scrollable row on phone */
  .cat-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cat-grid::-webkit-scrollbar { display: none; }
  .cat-card { flex: 0 0 108px; scroll-snap-align: start; }
  .cat-card .cat-img { width: 108px; height: 108px; }
  .cat-card h3 { font-size: 10.5px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .video-card { flex: 0 0 180px; }
  .form-grid { grid-template-columns: 1fr; }
  .checkout-wrap { padding: 14px 10px 40px; }
  .checkout-card { padding: 16px 14px 20px; border-radius: 12px; }
  /* footer: clean single/two-column layout on phone */
  .footer-grid { grid-template-columns: 1fr; gap: 0; padding: 32px var(--gutter) 10px; }
  .footer-col { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-col:last-child { border-bottom: none; }
  .footer-brand { text-align: center; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-brand .footer-logo { margin: 0 auto 12px; }
  .footer-brand .social-icons { justify-content: center; }
  .footer-col h4 { margin-bottom: 10px; }
  .footer-col ul li { margin-bottom: 7px; }
  .newsletter-strip { padding: 28px var(--gutter); }
  .newsletter-strip h3 { font-size: 16px; }
  .cart-table thead { display: none; }
  .cart-table td { display: block; border: none; padding: 6px 0; }
  .cart-table tr { display: block; border-bottom: 1px solid var(--border); padding: 14px 0; }
  /* product page mobile: swipe gallery, no thumbs, sticky ATC */
  .gallery { grid-template-columns: 1fr; }
  .thumbs { display: none; }
  .img-nav { display: none; }
  .product-layout { padding-top: 8px; gap: 18px; }
  .product-info h1 { font-size: 19px; }
  .pd-price-row .price { font-size: 20px; }
  .page-product .sticky-atc { display: flex; }
  .page-product .site-footer { padding-bottom: 70px; }
  .page-product .wa-float { bottom: 86px; }
  .trust-row { gap: 4px; padding: 12px 4px; }
  .buy-row { gap: 7px; }
  .buy-row .btn { font-size: 11.5px; padding: 0 4px; letter-spacing: .5px; height: 46px; }
  .buy-row .qty-field { height: 46px; }
  .buy-row .qty-field button { width: 30px; }
  .buy-row .qty-field input { width: 28px; }
}
