/* ══════════════════════════════════════
   SHOP PAGE
══════════════════════════════════════ */
.shop-page {
  max-width: 1360px;
  margin: 0 auto;
  padding: 64px 5% 96px;
}

.shop-header {
  margin-bottom: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-lt);
}

.shop-layout {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 44px;
  align-items: start;
}

/* Sidebar */
.shop-sidebar {
  position: sticky;
  top: 88px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.sidebar-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-lt);
}

.sidebar-section:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.sidebar-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray);
  transition: color 0.2s;
}

.filter-check:hover { color: var(--gold-dk); }

.filter-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.fc-count {
  margin-left: auto;
  font-size: 11px;
  color: var(--gray-lt);
  background: var(--light);
  padding: 2px 9px;
  border-radius: 50px;
  font-weight: 500;
}

/* Price Range */
.price-range-wrap { padding: 4px 0; }

.price-range-wrap input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
  height: 4px;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
  margin-top: 12px;
}

#price-val { font-weight: 700; color: var(--gold-dk); }

/* Mobile filter overlay */
.shop-filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,3,0,.48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 250;
}

.shop-filter-overlay.open { display: block; }

/* Mobile sidebar header (hidden on desktop) */
.sidebar-mob-hd { display: none; }

/* Mobile filter button (hidden on desktop) */
.shop-filter-btn { display: none; }

/* Mobile apply button (hidden on desktop) */
.shop-apply-btn { display: none; }

/* Filter badge on button */
.sfb-badge {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Clear Filters */
.clear-filters-btn {
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  background: #fff;
  cursor: pointer;
  transition: all 0.22s;
}

.clear-filters-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dk);
  background: var(--gold-soft);
}

/* Shop Main */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-lt);
}

.prod-count {
  font-size: 13px;
  color: var(--gray);
  font-weight: 400;
}

.sort-select {
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.sort-select:focus { border-color: var(--gold); }

/* Empty State */
.empty-state {
  text-align: center;
  padding: 88px 20px;
  color: var(--gray);
}

.empty-state h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--black);
  margin-bottom: 10px;
  margin-top: 16px;
}

.empty-state p { font-size: 14px; }


/* ══════════════════════════════════════
   PRODUCT DETAIL PAGE  (card-stack + accordion)
══════════════════════════════════════ */
.pd-page {
  max-width: 1360px;
  margin: 0 auto;
  padding: 36px 5% 96px;
}

/* Breadcrumb */
.pd-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-lt);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.pd-crumb a { color: var(--gray-lt); transition: color .18s; }
.pd-crumb a:hover { color: var(--gold); }
.pd-crumb span { color: var(--black); font-weight: 500; }
.pd-crumb i { font-size: 8px; color: var(--border); }

/* Main 2-col layout */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 80px;
}

/* ════ IMAGE CARD STACK (left col) ════ */
.pd-img-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pd-img-card {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-lt);
  background: var(--blush);
  box-shadow: var(--shadow-xs);
  position: relative;
  transition: box-shadow .28s;
}

.pd-img-card:hover { box-shadow: var(--shadow-md); }

.pd-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, opacity .25s ease;
}

.pd-img-card:hover img { transform: scale(1.04); }

.pd-disc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 13px;
  border-radius: 50px;
  box-shadow: 0 3px 12px rgba(201,168,76,.35);
  z-index: 1;
}

.pd-wish-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray-lt);
  cursor: pointer;
  transition: all .24s;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}

.pd-wish-btn:hover {
  color: #e8796e;
  border-color: #e8796e;
  background: #fff;
  transform: scale(1.1);
}

/* ════ INFO PANEL (right col) ════ */
.pd-info {}

.pd-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pd-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,.25);
  padding: 4px 12px;
  border-radius: 50px;
}

.pd-tag-badge.pb-new  { background: var(--black); color: rgba(255,255,255,.9); border-color: transparent; }
.pd-tag-badge.pb-sale { background: linear-gradient(135deg,var(--gold),var(--gold-dk)); color: #fff; border-color: transparent; }
.pd-tag-badge.pb-bs   { background: #7c2e12; color: #fff; border-color: transparent; }

.pd-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.16;
  margin-bottom: 16px;
}

/* Rating row */
.pd-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-lt);
}

.pd-rating-num { font-size: 13px; font-weight: 700; color: var(--black); }
.pd-rating-ct  { font-size: 12.5px; color: var(--gray); }
.pd-sep        { color: var(--border); }

.pd-sold {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

/* Price block */
.pd-price-block {
  background: linear-gradient(135deg, var(--gold-pale), rgba(255,252,248,.8));
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 16px;
}

.pd-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.pd-price     { font-size: 28px; font-weight: 700; color: var(--black); line-height: 1; }
.pd-mrp       { font-size: 15px; color: #c4bdb0; text-decoration: line-through; }
.pd-save-pill { font-size: 10.5px; font-weight: 700; color: #fff; background: linear-gradient(135deg,#2d7a4a,#1d5e37); padding: 4px 11px; border-radius: 50px; }
.pd-save-line { font-size: 12px; color: #2d7a4a; font-weight: 500; }

/* Color Variants */
.pd-variants { margin-bottom: 16px; }

.pd-variants-label { font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 10px; }
.pd-variants-label span { font-weight: 400; color: var(--gray); }
.pd-swatches { display: flex; gap: 10px; flex-wrap: wrap; }

/* Quantity control (shared with cart) */
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--ink);
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s;
}

.qty-btn:hover { background: var(--gold-soft); color: var(--gold-dk); }

.qty-ctrl span {
  min-width: 48px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  border-left: 1px solid var(--border-lt);
  border-right: 1px solid var(--border-lt);
  padding: 8px 0;
}

/* Qty + Cart row */
.pd-actions-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 10px;
}

.pd-cart-btn {
  flex: 1;
  padding: 0 20px;
  font-size: 11px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Buy Now */
.pd-buynow {
  width: 100%;
  padding: 14px;
  background: var(--black);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: all .24s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.pd-buynow:hover { background: transparent; color: var(--black); }

/* Social proof */
.pd-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
  background: var(--blush);
  border-radius: var(--radius-sm);
  padding: 9px 13px;
  margin-bottom: 16px;
  border: 1px solid var(--border-lt);
}

/* Trust strip */
.pd-delivery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-lt);
}

.pd-dlv-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 11px 10px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-sm);
  transition: background .2s, border-color .2s;
}

.pd-dlv-item:hover { background: var(--gold-pale); border-color: rgba(201,168,76,.25); }
.pd-dlv-item > i  { font-size: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.pd-dlv-ttl       { font-size: 11px; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.pd-dlv-sub       { font-size: 10px; color: var(--gray-lt); line-height: 1.4; }

/* Product Info Table */
.pd-info-table {
  background: var(--light);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}

.pd-info-row {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-lt);
}

.pd-info-row:last-child { border-bottom: none; }

.pd-info-k {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-lt);
  min-width: 96px;
  flex-shrink: 0;
}

.pd-info-v { font-size: 13px; color: var(--black); text-transform: capitalize; }

/* Accordion Sections */
.pd-sections {
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pd-section { border-bottom: 1px solid var(--border-lt); }
.pd-section:last-child { border-bottom: none; }

.pd-section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: background .18s, color .18s;
  user-select: none;
  background: var(--white);
}

.pd-section-hd:hover { background: var(--blush); color: var(--gold-dk); }

.pd-section-hd .fa-plus {
  font-size: 11px;
  color: var(--gray-lt);
  flex-shrink: 0;
  transition: transform .28s cubic-bezier(.22,1,.36,1), color .18s;
}

.pd-section.open .pd-section-hd { color: var(--gold-dk); background: var(--gold-pale); }
.pd-section.open .pd-section-hd .fa-plus { transform: rotate(45deg); color: var(--gold); }

.pd-section-bd {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease, padding .38s ease;
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.9;
  font-weight: 300;
  padding: 0 18px;
  background: var(--white);
}

.pd-section.open .pd-section-bd { max-height: 600px; padding: 14px 18px 18px; }

/* Related Products */
.pd-related {
  padding-top: 64px;
  border-top: 1px solid var(--border-lt);
}


/* ══════════════════════════════════════
   CART SIDEBAR
══════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,3,0,.42);
  backdrop-filter: blur(3px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  background: var(--cream);
  z-index: 310;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -8px 0 64px rgba(0,0,0,.16);
}

.cart-sidebar.open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--border-lt);
  flex-shrink: 0;
  background: var(--white);
}

.cart-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
}

.cart-close:hover { border-color: var(--gold); color: var(--gold-dk); background: var(--gold-soft); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 26px;
  background: var(--cream);
}

.cart-body::-webkit-scrollbar { width: 4px; }
.cart-body::-webkit-scrollbar-track { background: transparent; }
.cart-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.cart-footer {
  padding: 18px 26px 28px;
  border-top: 1px solid var(--border-lt);
  flex-shrink: 0;
  background: var(--white);
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-lt);
}

.cart-item:last-child { border-bottom: none; }

.ci-img {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-lt);
  flex-shrink: 0;
  background: var(--light);
}

.ci-info { flex: 1; min-width: 0; }

.ci-name {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ci-cat {
  font-size: 10.5px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
  font-weight: 600;
}

.ci-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 9px;
}

.ci-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ci-qty .qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s;
  background: #fff;
  color: var(--ink);
}

.ci-qty .qty-btn:hover { border-color: var(--gold); color: var(--gold-dk); background: var(--gold-soft); }

.ci-qty span {
  min-width: 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.ci-del {
  margin-left: auto;
  font-size: 14px;
  cursor: pointer;
  color: var(--border);
  transition: color 0.18s;
  background: none;
  border: none;
  padding: 5px;
  border-radius: var(--radius-xs);
}

.ci-del:hover { color: #e74c3c; background: #fff5f5; }

/* Cart Totals */
.cart-totals { margin-bottom: 6px; }

.ct-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 13px;
  color: var(--gray);
  border-bottom: 1px solid var(--border-lt);
}

.ct-row:last-child { border-bottom: none; }

.ct-total {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  padding-top: 14px;
}

.free-ship {
  font-size: 11px;
  font-weight: 700;
  color: #2d7a4a;
  background: #e8f5ee;
  padding: 3px 10px;
  border-radius: 50px;
}

/* Cart Empty */
.cart-empty {
  text-align: center;
  padding: 64px 20px;
  color: var(--gray);
}

.cart-empty-ico { font-size: 48px; margin-bottom: 14px; color: var(--gold); }

.cart-empty p {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}


/* ══════════════════════════════════════
   SEARCH OVERLAY
══════════════════════════════════════ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,3,0,.96);
  backdrop-filter: blur(12px);
  z-index: 400;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 88px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-inner {
  width: 100%;
  max-width: 700px;
  padding: 0 20px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 26px;
  transition: border-color 0.2s;
}

.search-bar:focus-within {
  border-color: rgba(201,168,76,.4);
  background: rgba(255,255,255,.07);
}

.search-icon { font-size: 18px; flex-shrink: 0; color: rgba(255,255,255,.4); }

.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  color: #fff;
  font-weight: 300;
}

.search-input::placeholder { color: rgba(255,255,255,.25); }

.search-close {
  font-size: 18px;
  color: rgba(255,255,255,.35);
  cursor: pointer;
  transition: color 0.18s;
  background: none;
  border: none;
  padding: 4px 8px;
  border-radius: var(--radius-xs);
}

.search-close:hover { color: #fff; }

.search-results {
  max-height: 430px;
  overflow-y: auto;
}

.search-results::-webkit-scrollbar { width: 4px; }
.search-results::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 4px; }

.search-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.18s;
  margin-bottom: 4px;
}

.search-item:hover { background: rgba(255,255,255,.06); }

.si-img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.08);
}

.si-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: #fff;
  margin-bottom: 3px;
}

.si-cat {
  font-size: 10.5px;
  color: var(--gold-lt);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
  font-weight: 600;
}

.si-price {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.si-price span {
  font-size: 12px;
  color: rgba(255,255,255,.32);
  text-decoration: line-through;
  margin-left: 6px;
}

.search-empty {
  text-align: center;
  color: rgba(255,255,255,.35);
  font-size: 14px;
  padding: 44px 0;
}


/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */

/* ── Hero ── */
.ab-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ab-hero-img { position: absolute; inset: 0; }
.ab-hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 10s ease; }
.ab-hero:hover .ab-hero-img img { transform: scale(1.04); }

.ab-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(15,7,2,.75) 0%, rgba(8,4,0,.45) 55%, rgba(30,14,3,.62) 100%);
}

.ab-hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 60px 5%; max-width: 860px; width: 100%;
}

.ab-hero-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold-lt);
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.22);
  padding: 7px 22px; border-radius: 50px;
  display: inline-block; margin-bottom: 28px;
}

.ab-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700; line-height: 1.1; color: #fff; margin-bottom: 22px;
}

.ab-hero-title em { font-style: italic; color: var(--gold-lt); }

.ab-hero-sub {
  font-size: clamp(13px, 1.5vw, 16px); color: rgba(255,255,255,.6);
  font-weight: 300; line-height: 2; max-width: 540px; margin: 0 auto;
}

/* ── Story Section ── */
.ab-story-sec {
  max-width: 1360px; margin: 0 auto; padding: 96px 5%;
}

.ab-story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.ab-story-imgcol { position: relative; }

.ab-story-img-main {
  aspect-ratio: 4/5; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.ab-story-img-main img { width: 100%; height: 100%; object-fit: cover; }

.ab-story-img-float {
  position: absolute; bottom: -32px; right: -28px;
  width: 48%; aspect-ratio: 1;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.ab-story-img-float img { width: 100%; height: 100%; object-fit: cover; }

.ab-divider {
  width: 40px; height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px; margin: 20px 0 24px;
}

.ab-body {
  font-size: 15px; color: var(--gray); line-height: 2;
  font-weight: 300; margin-bottom: 20px;
}

.ab-body em  { font-style: italic; color: var(--gold-dk); }
.ab-body strong { font-weight: 600; color: var(--ink); }

.ab-stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 36px;
}

.ab-stat {
  text-align: center; padding: 18px 12px;
  background: var(--gold-pale); border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md);
}

.ab-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--gold-dk); line-height: 1;
}

.ab-stat-lbl { font-size: 10.5px; color: var(--gray); margin-top: 5px; font-weight: 500; }

/* ── Mission & Vision ── */
.ab-mv-bg { background: var(--blush); }

.ab-mv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}

.ab-mv-card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg); padding: 40px 32px;
  text-align: center; box-shadow: var(--shadow-xs);
  transition: box-shadow .3s, transform .3s, border-color .25s;
}

.ab-mv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: rgba(201,168,76,.25); }

.ab-mv-ico {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--gold-pale), var(--blush-md));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--gold-dk);
}

.ab-mv-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 600; color: var(--black); margin-bottom: 12px;
}

.ab-mv-body { font-size: 13.5px; color: var(--gray); line-height: 1.95; font-weight: 300; }

/* ── Values ── */
.ab-values-sec { background: var(--cream); }

.ab-values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.ab-value-item {
  padding: 32px 26px;
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  background: var(--white);
  position: relative; overflow: hidden;
  transition: box-shadow .28s, border-color .28s;
}

.ab-value-item:hover { box-shadow: var(--shadow-sm); border-color: rgba(201,168,76,.3); }

.ab-value-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700; line-height: 1;
  color: rgba(201,168,76,.12); margin-bottom: 12px;
  position: absolute; top: 18px; right: 20px;
}

.ab-value-title {
  font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 10px;
}

.ab-value-body { font-size: 13px; color: var(--gray); line-height: 1.9; font-weight: 300; }

/* ── Craft Process ── */
.ab-process-bg { background: linear-gradient(135deg, #fdf3ea, var(--gold-pale)); border-top: 1px solid var(--border-lt); border-bottom: 1px solid var(--border-lt); }

.ab-process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative;
}

.ab-step {
  text-align: center; padding: 0 20px; position: relative;
}

.ab-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 14px;
}

.ab-step-line {
  position: absolute; top: 44px; left: 50%; right: -50%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,.2));
  z-index: 0;
}

.ab-step-line-last { display: none; }

.ab-step-ico {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold-dk);
  margin: 0 auto 18px; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(201,168,76,.2);
}

.ab-step-title { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.ab-step-body  { font-size: 12px; color: var(--gray); line-height: 1.85; font-weight: 300; }

/* ── Team ── */
.ab-team-sec { background: var(--white); }

.ab-team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.ab-team-card {
  text-align: center; padding: 40px 30px 36px;
  border: 1px solid var(--border-lt); border-radius: var(--radius-xl);
  background: var(--cream); box-shadow: var(--shadow-xs);
  transition: box-shadow .3s, transform .3s;
}

.ab-team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.ab-team-av {
  width: 90px; height: 90px; border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.ab-team-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.ab-team-role { font-size: 10.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.ab-team-bio  { font-size: 13px; color: var(--gray); line-height: 1.85; font-weight: 300; }

/* ── Certifications ── */
.ab-cert-bg { background: var(--blush-md); }

.ab-cert-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.ab-cert-card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: var(--radius-md); padding: 30px 24px;
  text-align: center; box-shadow: var(--shadow-xs);
  transition: box-shadow .25s, transform .25s;
}

.ab-cert-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }

.ab-cert-ico {
  font-size: 28px; color: var(--gold); margin-bottom: 14px;
  display: block;
}

.ab-cert-title { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.ab-cert-body  { font-size: 12.5px; color: var(--gray); line-height: 1.8; font-weight: 300; }

/* ── CTA ── */
.ab-cta-bg {
  background: linear-gradient(135deg, var(--black) 0%, #2a1a0a 100%);
  padding: 96px 5%; text-align: center;
  border-top: 1px solid rgba(201,168,76,.12);
}

.ab-cta-inner { max-width: 580px; margin: 0 auto; }

.ab-cta-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

.ab-cta-eyebrow::before, .ab-cta-eyebrow::after { content: '◆'; font-size: 4px; opacity: .5; }

.ab-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px); font-weight: 700;
  color: #fff; margin-bottom: 18px; line-height: 1.15;
}

.ab-cta-title em { font-style: italic; color: var(--gold-lt); }

.ab-cta-sub {
  font-size: 14.5px; color: rgba(255,255,255,.45);
  line-height: 1.95; font-weight: 300; margin-bottom: 40px;
}

.ab-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   WISHLIST PAGE
══════════════════════════════════════ */
.wishlist-page {
  max-width: 1360px;
  margin: 0 auto;
  padding: 64px 5% 96px;
}

.wishlist-header {
  margin-bottom: 52px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-lt);
}

/* ══════════════════════════════════════
   ORDER HISTORY
══════════════════════════════════════ */
.order-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .25s;
}

.order-card:hover { box-shadow: var(--shadow-sm); }

.order-card-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-lt);
}

.order-num  { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.order-date { font-size: 11.5px; color: var(--gray-lt); }
.order-status { font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.order-total  { font-size: 15px; font-weight: 700; color: var(--black); }

.order-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }

.order-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.order-item img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-lt);
  flex-shrink: 0;
  background: var(--blush);
}

.order-item-name { font-size: 13px; font-weight: 500; color: var(--black); margin-bottom: 3px; }
.order-item-meta { font-size: 11.5px; color: var(--gray-lt); }

.order-pay-method {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--gray);
  background: var(--light);
  border: 1px solid var(--border-lt);
  border-radius: 50px;
  padding: 4px 12px;
}

/* ══════════════════════════════════════
   PRODUCT REVIEWS
══════════════════════════════════════ */
.rv-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 56px 0 0;
  border-top: 1px solid var(--border-lt);
  margin-top: 64px;
}

.rv-hd { margin-bottom: 36px; }

/* Individual review card */
.rv-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-xs);
}

.rv-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.rv-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--blush-md));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-dk);
  flex-shrink: 0;
}

.rv-name    { font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.rv-date    { font-size: 11px; color: var(--gray-lt); }
.rv-stars   { margin-left: auto; font-size: 12px; color: var(--gold); display: flex; gap: 2px; }
.rv-comment { font-size: 13.5px; color: var(--gray); line-height: 1.85; font-weight: 300; margin: 0; }

/* Review form */
.rv-form-wrap {
  margin-top: 40px;
  padding: 28px 30px;
  background: var(--light);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  max-width: 600px;
}

.rv-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.rv-stars-pick {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--gold);
}

.rv-star { cursor: pointer; transition: transform .15s, color .15s; }
.rv-star:hover { transform: scale(1.2); }

.rv-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .18s;
  margin-bottom: 12px;
  display: block;
}

.rv-input:focus { border-color: var(--gold); }
.rv-textarea { resize: vertical; min-height: 80px; }


/* ══════════════════════════════════════
   INFO / SUPPORT PAGES (shared)
══════════════════════════════════════ */
.info-page {
  max-width: 1360px;
  margin: 0 auto;
  padding: 56px 5% 96px;
}

.info-hero {
  background: linear-gradient(135deg, var(--blush-md) 0%, var(--gold-pale) 50%, var(--blush-md) 100%);
  border-bottom: 1px solid var(--border-lt);
  padding: 64px 5% 52px;
  text-align: center;
}

.info-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin: 10px 0 14px;
}

.info-hero-title em { font-style: italic; color: var(--gold); }

.info-hero-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

.info-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 28px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--gray);
}

/* Shared section spacing */
.ret-section { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--border-lt); }
.ret-section:last-of-type { border-bottom: none; margin-bottom: 0; }

/* ══ TRACK ORDER ══ */
.track-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
  padding-top: 8px;
}

.track-form-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}

.track-form-ico {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 18px;
}

.track-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.track-form-sub {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
}

.track-fields { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }

.track-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

.track-field input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--ink);
  background: #fdfaf7;
  outline: none;
  transition: border-color .18s;
}

.track-field input:focus { border-color: var(--gold); background: #fff; }

.trk-err {
  color: #e74c3c;
  font-size: 13px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.trk-result-card {
  margin-top: 20px;
  background: var(--light);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}

.trk-result-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-lt);
}

.trk-order-num  { font-size: 14px; font-weight: 700; color: var(--black); }
.trk-order-date { font-size: 11.5px; color: var(--gray-lt); margin-top: 3px; }
.trk-order-total { font-size: 16px; font-weight: 700; color: var(--gold-dk); }

.trk-timeline {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  position: relative;
}

.trk-timeline::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--border-lt);
  z-index: 0;
}

.trk-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.trk-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray-lt);
  transition: all .25s;
}

.trk-step.done .trk-dot { border-color: var(--gold); background: var(--gold); color: #fff; }
.trk-step.active .trk-dot { border-color: var(--gold-dk); box-shadow: 0 0 0 4px rgba(201,168,76,.2); }

.trk-step-lbl {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-lt);
  text-align: center;
  letter-spacing: .3px;
}

.trk-step.done .trk-step-lbl, .trk-step.active .trk-step-lbl { color: var(--gold-dk); }

.track-info-col { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }

.track-tip {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s;
}

.track-tip:hover { box-shadow: var(--shadow-sm); }

.track-tip-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--blush-md));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold-dk);
  flex-shrink: 0;
}

.track-tip-title { font-size: 13.5px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.track-tip-body  { font-size: 12.5px; color: var(--gray); line-height: 1.7; font-weight: 300; }

/* ══ RETURNS ══ */
.ret-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-lt);
}

.ret-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}

.ret-pill i { color: var(--gold); }

.ret-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ret-step {
  text-align: center;
  padding: 32px 22px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .25s, transform .25s;
  position: relative;
}

.ret-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.ret-step-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--blush-md));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold-dk);
  margin: 0 auto 18px;
}

.ret-step h4 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.ret-step p  { font-size: 13px; color: var(--gray); line-height: 1.85; font-weight: 300; }

.ret-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.ret-col {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-lt);
  background: var(--white);
}

.ret-col h3 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--black); margin-bottom: 18px; }

.ret-col-ico { font-size: 28px; margin-bottom: 14px; }
.ret-col-ico.green { color: #2d7a4a; }
.ret-col-ico.red   { color: #e74c3c; }

.ret-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ret-list li {
  font-size: 13.5px;
  color: var(--gray);
  font-weight: 300;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.ret-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold-lt); }

/* ══ SHIPPING ══ */
.ship-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border-lt);
}

.ship-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-xl);
  padding: 36px 28px 30px;
  position: relative;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .28s, transform .28s;
}

.ship-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.ship-card.featured {
  border-color: rgba(201,168,76,.3);
  background: linear-gradient(160deg, var(--white) 60%, var(--gold-pale));
  box-shadow: var(--shadow-sm), 0 0 0 2px rgba(201,168,76,.12);
}

.ship-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.ship-card-ico { font-size: 28px; color: var(--gold); margin-bottom: 16px; }
.ship-card h3  { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 10px; }

.ship-card-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dk);
  margin-bottom: 4px;
}

.ship-card-price { font-size: 18px; font-weight: 700; color: var(--black); }
.ship-card-price.sub { font-size: 12px; font-weight: 400; color: var(--gray-lt); margin-bottom: 18px; }

.ship-card-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ship-card-list li {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  padding-left: 18px;
  position: relative;
}
.ship-card-list li::before { content: '✦'; position: absolute; left: 0; font-size: 8px; color: var(--gold-lt); top: 3px; }

.ship-timeline { display: flex; flex-direction: column; gap: 0; }

.ship-tl-item {
  display: flex;
  gap: 20px;
  padding: 20px 22px;
  border-left: 2px solid var(--border-lt);
  margin-left: 22px;
  position: relative;
  transition: background .2s;
}

.ship-tl-item:hover { background: var(--blush); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.ship-tl-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold-dk);
  flex-shrink: 0;
  position: absolute;
  left: -24px;
  top: 16px;
  box-shadow: var(--shadow-xs);
}

.ship-tl-title { font-size: 14.5px; font-weight: 600; color: var(--black); margin-bottom: 5px; }
.ship-tl-body  { font-size: 13.5px; color: var(--gray); line-height: 1.8; font-weight: 300; }

/* ══ SIZE GUIDE ══ */
.sg-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  border-bottom: 2px solid var(--border-lt);
  padding-bottom: 0;
}

.sg-tab {
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-lt);
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all .2s;
}

.sg-tab.active,
.sg-tab:hover { color: var(--gold-dk); border-bottom-color: var(--gold); }

.sg-panel { display: none; }
.sg-panel.active { display: block; }

.sg-two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.sg-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 22px;
}

.sg-panel-title em { font-style: italic; color: var(--gold); }

.sg-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }

.sg-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
}

.sg-step-n {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.sg-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--gray);
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  line-height: 1.7;
  font-weight: 300;
}

.sg-tip i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.sg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.sg-table th {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dk);
}

.sg-table td {
  border: 1px solid var(--border-lt);
  padding: 10px 14px;
  color: var(--ink);
}

.sg-table tr:nth-child(even) td { background: var(--light); }
.sg-table tr:hover td { background: var(--gold-pale); }

/* ══ CONTACT ══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--ink);
  background: #fdfaf7;
  outline: none;
  transition: border-color .18s;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { border-color: var(--gold); background: #fff; }

.contact-field textarea { resize: vertical; min-height: 120px; }

.contact-info-col { display: flex; flex-direction: column; gap: 20px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  transition: box-shadow .2s, border-color .2s;
}

.contact-info-item:hover { box-shadow: var(--shadow-sm); border-color: rgba(201,168,76,.25); }

.contact-info-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--blush-md));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold-dk);
  flex-shrink: 0;
}

.contact-info-title { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-lt); margin-bottom: 3px; }
.contact-info-val   { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.contact-info-sub   { font-size: 11.5px; color: var(--gray-lt); }

.contact-hours-card {
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}

.contact-hours-title { font-size: 12px; font-weight: 700; color: var(--gold-dk); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid rgba(201,168,76,.15);
}

.contact-hours-row:last-child { border-bottom: none; }
.contact-hours-row.holiday span:last-child { color: #e74c3c; font-weight: 600; }

/* ══ POLICY PAGES ══ */
.policy-wrap { max-width: 820px; margin: 0 auto; }

.policy-updated {
  font-size: 12px;
  color: var(--gray-lt);
  margin-bottom: 40px;
  padding: 10px 16px;
  background: var(--light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  display: inline-block;
}

.policy-section { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border-lt); }
.policy-section:last-of-type { border-bottom: none; }

.policy-h {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
}

.policy-body {
  font-size: 14px;
  color: var(--gray);
  line-height: 2;
  font-weight: 300;
}

/* ══ AUTHENTICITY ══ */
.auth-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border-lt);
}

.auth-card {
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1px solid var(--border-lt);
  position: relative;
  transition: box-shadow .28s, transform .28s;
}

.auth-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.auth-card.gold   { background: linear-gradient(135deg, #fffdf0, var(--gold-pale)); border-color: rgba(201,168,76,.3); }
.auth-card.silver { background: linear-gradient(135deg, #f5f7fa, #e8ecf2); border-color: rgba(100,120,160,.2); }
.auth-card.green  { background: linear-gradient(135deg, #f0faf4, #e0f5e8); border-color: rgba(45,122,74,.2); }

.auth-card-ico { font-size: 32px; margin-bottom: 16px; }
.auth-card.gold   .auth-card-ico { color: var(--gold-dk); }
.auth-card.silver .auth-card-ico { color: #4a6fa5; }
.auth-card.green  .auth-card-ico { color: #2d7a4a; }

.auth-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.auth-card p  { font-size: 13.5px; color: var(--gray); line-height: 1.85; font-weight: 300; margin-bottom: 18px; }

.auth-card-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  padding: 4px 12px;
  border-radius: 50px;
}

.auth-verify-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.auth-verify-item {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  transition: box-shadow .25s;
}

.auth-verify-item:hover { box-shadow: var(--shadow-sm); }

.auth-verify-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(201,168,76,.2);
  line-height: 1;
  margin-bottom: 10px;
}

.auth-verify-item h4 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.auth-verify-item p  { font-size: 13.5px; color: var(--gray); line-height: 1.85; font-weight: 300; }

.auth-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.auth-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

.auth-check-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-lt);
  flex-shrink: 0;
}

.auth-check-ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e8f5ee;
  color: #2d7a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
