/** Shopify CDN: Minification failed

Line 2114:16 Expected ":"

**/
/* =========================================================
   CSS VARIABLES
   ========================================================= */
:root {
  --gold: #b58b44;
  --gold-light: #d4a96a;
  --gold-dark: #8a6420;
  --black: #111111;
  --white: #ffffff;
  --cream: #faf8f4;
  --gray-light: #f4f4f2;
  --gray-mid: #e8e4de;
  --gray-text: #888888;
  --navy: #1a1a2e;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', 'Helvetica Neue', sans-serif;
  --header-height: 70px;
  --nav-height: 46px;
  --transition: 0.3s ease;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
/* Shopify skip link — hide visually, show on focus */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.visually-hidden:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
ul { list-style: none; }

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */
.announce-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 400;
  overflow: hidden;
  position: relative;
}
.announce-marquee {
  display: inline-flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  gap: 60px;
}
.announce-marquee span { margin: 0 10px; }
.announce-marquee .dot {
  color: var(--gold);
  margin: 0 6px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--header-height);
  max-width: 1320px;
  margin: 0 auto;
  gap: 18px;
}
.header-logo { flex: 0 0 auto; margin-right: auto; }
.header-icons { flex: 0 0 auto; margin-left: auto; }
.header-search { flex: 1 1 auto; max-width: 540px; }
@media (max-width: 768px) {
  .header-inner { padding: 0 16px; gap: 10px; }
  .header-logo, .header-icons { margin: 0; }
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo-img {
  width: auto;
  height: 56px;
  max-height: 56px;
  display: block;
  object-fit: contain;
  /* logo on white header — invert black bg to white via mix-blend */
  background: transparent;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Search */
.header-search {
  flex: 1;
  max-width: 420px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 10px 44px 10px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--black);
  background: var(--gray-light);
  outline: none;
  transition: border-color var(--transition);
}
.header-search input:focus { border-color: var(--gold); background: var(--white); }
.header-search input::placeholder { color: var(--gray-text); }
.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-text);
  padding: 0;
  line-height: 1;
}
.search-btn:hover { color: var(--gold); }

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.hdr-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 10px;
  color: var(--black);
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.hdr-icon-btn:hover { color: var(--gold); }
.hdr-icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: 2px;
  right: 8px;
  background: var(--gold);
  color: var(--white);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Social Icons (desktop only) */
.header-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-left: 1px solid var(--gray-mid);
  padding-left: 16px;
  margin-left: 8px;
}
.social-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: color var(--transition);
}
.social-icon:hover { color: var(--gold); }
.social-icon svg { width: 16px; height: 16px; }

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 26px;
  height: 26px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  border-radius: 1px;
  transition: all var(--transition);
}

/* =========================================================
   DESKTOP NAV BAR
   ========================================================= */
.nav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: var(--nav-height);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--black);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link svg { width: 10px; height: 10px; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-top: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 800;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--black);
  border-bottom: 1px solid var(--gray-light);
  transition: all var(--transition);
}
.nav-dropdown a:hover {
  color: var(--gold);
  background: var(--cream);
  padding-left: 24px;
}

/* =========================================================
   MOBILE DRAWER
   ========================================================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--white);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform var(--transition);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--gray-mid);
}
.drawer-logo { font-family: var(--font-serif); font-size: 20px; color: var(--gold); font-weight: 600; letter-spacing: 2px; }
.drawer-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 20px;
}
.drawer-search {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-light);
}
.drawer-search input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 4px;
  font-size: 13px;
  outline: none;
}
.drawer-nav { flex: 1; padding: 8px 0; }
.drawer-nav-item { border-bottom: 1px solid var(--gray-light); }
.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--black);
}
.drawer-nav-link span { font-size: 16px; color: var(--gold); }
.drawer-sub { display: none; background: var(--gray-light); }
.drawer-sub.open { display: block; }
.drawer-sub a {
  display: block;
  padding: 10px 30px;
  font-size: 13px;
  color: var(--gray-text);
  border-bottom: 1px solid var(--gray-mid);
}
.drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--gray-mid);
}
.drawer-footer-icons { display: flex; gap: 16px; margin-top: 12px; }
.drawer-footer-icons a { color: var(--black); }
.drawer-footer-icons a:hover { color: var(--gold); }

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 85vh;
  min-height: 480px;
  max-height: 700px;
}
.hero-slides { display: flex; width: 100%; height: 100%; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: var(--white);
  max-width: 480px;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  font-weight: 400;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 360px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background var(--transition);
}
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

/* Hero Controls */
.hero-arrows {
  position: absolute;
  bottom: 28px;
  right: 40px;
  display: flex;
  gap: 8px;
}
.hero-arrow {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); }
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active { background: var(--gold); width: 44px; }

/* =========================================================
   HERO SPLIT (Lifestyle layout — image + text side-by-side)
   ========================================================= */
.hero-split-section {
  background: linear-gradient(180deg, #faf7f3 0%, #f3ece2 100%);
  padding: 0;
  overflow: hidden;
}
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  min-height: 520px;
  max-height: 580px;
  width: 100%;
}
.hero-split--reverse {
  grid-template-columns: 1fr 1.05fr;
}
.hero-split--reverse .hero-split-media { order: 2; }
.hero-split--reverse .hero-split-content { order: 1; }

.hero-split-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  max-height: 580px;
}
.hero-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 6s ease;
}
.hero-split-section:hover .hero-split-media img { transform: scale(1.04); }

.hero-split-tag {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.hero-split-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(181,139,68,0.2);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(181,139,68,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(181,139,68,0.08); }
}

.hero-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8% 80px 7%;
}
.hero-split-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-split-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.hero-split-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero-split-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-split-title p { margin: 0; }

.hero-split-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0,0,0,0.62);
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-split-btns {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-split-btn-primary {
  padding: 15px 32px;
  letter-spacing: 1.8px;
}
.hero-split-link {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 4px;
  transition: all var(--transition);
}
.hero-split-link:hover { color: var(--gold); transform: translateX(4px); }

.hero-split-features {
  display: flex;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.08);
  max-width: 500px;
}
.hero-split-feature {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-split-feature-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.hero-split-feature-label {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  font-weight: 500;
}

/* Hero Split — Tablet */
@media (max-width: 1024px) {
  .hero-split { min-height: 460px; max-height: 520px; }
  .hero-split-media { min-height: 460px; max-height: 520px; }
  .hero-split-content { padding: 50px 6%; }
  .hero-split-features { gap: 32px; }
  .hero-split-title { font-size: clamp(28px, 4vw, 44px); }
}

/* Hero Split — Mobile (stack vertically) */
@media (max-width: 768px) {
  .hero-split-section { display: block !important; }
  .hero-split {
    display: block !important;
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    max-height: none !important;
  }
  .hero-split--reverse { display: block !important; }
  .hero-split-media {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 380px !important;
    max-height: none !important;
    aspect-ratio: 4 / 5 !important;
    order: 1 !important;
    overflow: hidden;
  }
  .hero-split-media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 35% !important;
  }
  .hero-split-content {
    padding: 40px 24px 48px;
    text-align: left;
  }
  .hero-split-eyebrow { margin-bottom: 14px; }
  .hero-split-title { margin-bottom: 18px; line-height: 1.12; }
  .hero-split-desc { font-size: 14px; margin-bottom: 28px; }
  .hero-split-btns { gap: 20px; margin-bottom: 36px; }
  .hero-split-btn-primary { padding: 13px 26px; }
  .hero-split-features { gap: 24px; padding-top: 28px; flex-wrap: wrap; }
  .hero-split-feature-num { font-size: 22px; }
  .hero-split-feature-label { font-size: 10px; }
  .hero-split-tag {
    top: 18px;
    left: 18px;
    font-size: 10px;
    padding: 6px 12px;
  }
}

/* =========================================================
   SECTION HEADINGS
   ========================================================= */
.section-head {
  text-align: center;
  margin-bottom: 36px;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1px;
}
.section-head h2 .gold { color: var(--gold); font-style: italic; }
.section-head p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--gray-text);
  letter-spacing: 0.4px;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px auto 0;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-divider-icon { color: var(--gold); font-size: 14px; }

/* =========================================================
   SECTIONS WRAPPER
   ========================================================= */
/* Reset Shopify's outer section wrapper — inner content sections have their own padding */
.shopify-section { padding: 0; }
section { padding: 56px 0; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* =========================================================
   CATEGORY CARDS
   ========================================================= */
.categories { background: var(--cream); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.cat-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--navy);
  cursor: pointer;
  group: true;
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.85;
}
.cat-card:hover img { transform: scale(1.06); opacity: 1; }
.cat-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 8px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  text-align: center;
}
.cat-card-label span {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}


/* =========================================================
   COLLECTION PAGE — TITLEBAR
   ========================================================= */
.page-titlebar {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-mid);
  padding: 20px 0;
}
.page-titlebar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.page-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 1px;
}
.product-count-label {
  font-size: 13px;
  color: var(--gray-text);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-text);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.breadcrumb a { text-decoration: none; color: var(--gray-text); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gray-mid); }
.breadcrumb .current { color: var(--gold); }

/* =========================================================
   COLLECTION PAGE — MOBILE TOP BAR (hidden on desktop)
   ========================================================= */
.mobile-top-bar {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}
.filter-sort-row {
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
}
.mob-filter-btn,
.mob-sort-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-mid);
  background: transparent;
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 3px;
}
.mob-filter-btn svg,
.mob-sort-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* =========================================================
   COLLECTION PAGE — FILTER CHIPS
   ========================================================= */
.filter-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 4px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px 5px 12px;
  border: 1px solid var(--gold);
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--gold-dark);
  background: rgba(181,139,68,0.06);
  cursor: pointer;
}
.chip-remove {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
}

/* =========================================================
   COLLECTION PAGE — SORT OVERLAY (mobile modal)
   CRITICAL: must be display:none by default
   ========================================================= */
.sort-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0,0,0,0.45);
  align-items: flex-end;
}
.sort-overlay.open {
  display: flex;
}
.sort-sheet {
  width: 100%;
  background: var(--white);
  border-radius: 16px 16px 0 0;
  padding: 24px 20px 32px;
}
.sort-sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.sort-sheet-head h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}
.sort-sheet-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--black);
  line-height: 1;
}
.sort-opt {
  display: block;
  width: 100%;
  padding: 13px 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: none;
  text-align: left;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--black);
  cursor: pointer;
  letter-spacing: 0.3px;
}
.sort-opt:last-child { border-bottom: none; }
.sort-opt.sel {
  color: var(--gold);
  font-weight: 500;
}

/* =========================================================
   COLLECTION PAGE — SHOP LAYOUT (sidebar + grid)
   ========================================================= */
.shop-wrap {
  padding: 40px 0 60px;
}
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

/* =========================================================
   COLLECTION PAGE — SIDEBAR FILTERS
   ========================================================= */
.sidebar {
  position: sticky;
  top: 80px;
}
.sidebar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(181,139,68,0.2);
  margin-bottom: 16px;
}
.sidebar-title-text {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
}
.clear-all-btn {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.clear-all-btn:hover { text-decoration-color: var(--gold); }
.filter-group {
  border-bottom: 1px solid rgba(181,139,68,0.15);
  padding-bottom: 2px;
  margin-bottom: 2px;
}
.filter-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 13px 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--black);
}
.filter-toggle svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.filter-toggle .arr {
  width: 14px;
  height: 14px;
}
.filter-group:not(.open) .filter-toggle .arr {
  transform: rotate(-90deg);
}
.filter-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.filter-body {
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 9px;
}
.filter-option input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.filter-label {
  font-size: 13px;
  color: #444;
  cursor: pointer;
  letter-spacing: 0.2px;
}

/* =========================================================
   COLLECTION PAGE — PRODUCTS SECTION & SORT BAR
   ========================================================= */
.products-section { flex: 1; min-width: 0; }
.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(181,139,68,0.15);
  margin-bottom: 24px;
}
.sort-bar-info {
  font-size: 13px;
  color: #666;
  letter-spacing: 0.3px;
}
.sort-select {
  padding: 8px 32px 8px 12px;
  border: 1px solid rgba(181,139,68,0.4);
  border-radius: 3px;
  background: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--black);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b58b44' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.sort-select:focus {
  outline: 1px solid var(--gold);
}
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.load-more-btn {
  padding: 13px 40px;
  border: 1px solid var(--gold);
  background: transparent;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  transition: all var(--transition);
}
.load-more-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* =========================================================
   COLLECTION PAGE — RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: none;
  }
  .mobile-top-bar {
    display: block;
    padding: 12px 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(181,139,68,0.15);
  }
  .sort-bar .sort-bar-info { display: none; }
  .sort-bar .sort-select { display: none; }
  .sort-bar { display: none; }
}
@media (max-width: 600px) {
  .page-titlebar { padding: 24px 0 20px; }
  .shop-wrap { padding: 20px 0 40px; }
}

/* =========================================================
   PRODUCT CARDS & GRID
   ========================================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-2px); }
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(145deg, #fdfaf5, #f5ede0);
}
.product-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

/* Gold Circular Wishlist Button */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(181,139,68,0.4);
}
.wishlist-btn svg { width: 16px; height: 16px; }
.product-card:hover .wishlist-btn { opacity: 1; transform: scale(1); }
.wishlist-btn:hover { background: var(--gold-dark); transform: scale(1.1) !important; }

/* Product Badge */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
}
.new-badge, .badge-new { background: var(--gold); color: var(--white); }
.sale-badge, .badge-sale { background: #c0392b; color: var(--white); }
.badge-best { background: var(--black); color: var(--white); }
.product-badge { white-space: nowrap; }

/* Quick Add */
.quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all var(--transition);
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }

.product-info {
  padding: 14px 14px 16px;
}
.product-metal {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-name a { color: inherit; text-decoration: none; }
.product-name a:hover { color: var(--gold); }
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}
.stars { color: var(--gold); font-size: 11px; }
.rating-ct { font-size: 11px; color: var(--gray-text); }
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.price-now { font-size: 15px; font-weight: 600; color: var(--black); }
.price-was { font-size: 13px; color: var(--gray-text); text-decoration: line-through; }
.price-pct { font-size: 11px; color: #c0392b; font-weight: 500; }
/* Legacy aliases */
.price-current { font-size: 15px; font-weight: 600; color: var(--black); }
.price-old { font-size: 13px; color: var(--gray-text); text-decoration: line-through; }
.price-discount { font-size: 11px; color: #c0392b; font-weight: 500; }

/* Wishlist button on product card */
.product-wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
  z-index: 2;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}
.product-wish-btn svg { width: 16px; height: 16px; }
.product-card:hover .product-wish-btn { opacity: 1; transform: scale(1); }
.product-wish-btn:hover { color: var(--gold); }
.product-wish-btn.active svg { fill: var(--gold); stroke: var(--gold); }

/* Add to cart button */
.add-cart-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border-radius: 2px;
  transition: background var(--transition);
}
.add-cart-btn:hover { background: var(--gold); }

/* =========================================================
   OFFER BANNER (2-col split)
   ========================================================= */
.offer-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.offer-card {
  position: relative;
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
}
.offer-card img { object-position: center; }
.offer-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.offer-card-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.offer-card-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  width: fit-content;
}
.btn-white:hover { background: var(--gold); color: var(--white); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 8px;
  border: 1px solid var(--gray-mid);
}
.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--black);
  font-style: normal;
  margin-bottom: 18px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}
.reviewer-name { font-size: 13px; font-weight: 600; }
.reviewer-loc { font-size: 11px; color: var(--gray-text); margin-top: 2px; }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  background: var(--black);
  color: var(--white);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-icon { color: var(--gold); }
.trust-icon svg { width: 36px; height: 36px; }
.trust-title { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.trust-desc { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* =========================================================
   INSTAGRAM GRID
   ========================================================= */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.insta-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.insta-item img { transition: transform 0.4s ease; }
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(181,139,68,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay svg { width: 32px; height: 32px; color: var(--white); }

/* =========================================================
   GOLD TICKER (bottom of hero or top of section)
   ========================================================= */
.gold-ticker {
  background: var(--gold);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
}
.gold-ticker-inner {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ticker-sep { opacity: 0.5; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-text { color: var(--gold); font-size: 24px; margin-bottom: 16px; display: block; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-newsletter {
  margin-top: 12px;
  display: flex;
  gap: 0;
}
.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--white);
  font-size: 13px;
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter button {
  padding: 10px 18px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background var(--transition);
}
.footer-newsletter button:hover { background: var(--gold-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-payments { display: flex; gap: 8px; align-items: center; }
.payment-badge {
  padding: 4px 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.footer-credit {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: 14px;
}
.footer-logo-img {
  width: auto;
  height: 80px;
  max-height: 80px;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-credit a:hover { color: #fff; }

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 800;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.fab-whatsapp svg { width: 28px; height: 28px; }

/* Mobile Bottom Nav */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
  z-index: 700;
  padding: 0;
}
.bottom-nav-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 0;
  font-size: 9.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-text);
  transition: color var(--transition);
}
.bottom-nav-btn.active, .bottom-nav-btn:hover { color: var(--gold); }
.bottom-nav-btn svg { width: 20px; height: 20px; }

/* =========================================================
   RESPONSIVE — TABLET (≤1100px)
   ========================================================= */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 800px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-item { border-right: none; padding: 16px; }
  .header-socials { display: none; }
  .nav-link { padding: 0 10px; font-size: 11.5px; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤768px)
   ========================================================= */
@media (max-width: 768px) {
  :root { --header-height: 58px; }

  /* Hide desktop nav */
  .nav-bar { display: none; }

  /* Show hamburger */
  .hamburger { display: flex; }

  /* Header adjustments */
  .header-search { display: none; }
  .header-icons .hdr-icon-btn span.icon-label { display: none; }
  .hdr-icon-btn { padding: 6px 8px; }

  /* Hero */
  .hero { height: 65vw; min-height: 320px; max-height: 480px; }
  .hero-content { left: 5%; max-width: 85%; }
  .hero-title { font-size: 26px; }
  .hero-desc { display: none; }
  .hero-btns { gap: 8px; }
  .btn-primary, .btn-outline { padding: 10px 18px; font-size: 11px; }
  .hero-arrows { display: none; }

  /* Categories — 2 column grid on mobile (clean, no horizontal scroll) */
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 100%;
    padding: 0;
  }
  .cat-card {
    min-width: 0;
    aspect-ratio: 1/1.1;
    border-radius: 8px;
    width: 100%;
  }
  .cat-card img {
    object-position: center center;
    opacity: 0.92;
  }
  .cat-card-label {
    padding: 24px 8px 12px;
  }
  .cat-card-label span {
    font-size: 12px;
    letter-spacing: 1px;
  }

  /* Collection / Shop page */
  .page-title { font-size: 22px; }
  .product-info { padding: 10px 12px 12px; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Offer banners */
  .offer-banner-grid { grid-template-columns: 1fr; }
  .offer-card { height: 260px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Trust */
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Instagram */
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Bottom nav */
  .bottom-nav { display: block; }
  .fab-whatsapp { bottom: 76px; right: 16px; width: 46px; height: 46px; }

  /* Padding bottom for bottom nav */
  footer { padding-bottom: 0; }
  body { padding-bottom: 60px; }

  section { padding: 40px 0; }
  .container { padding: 0 14px; }

  .section-head h2 { font-size: 26px; }

  /* Header tighten on small screens */
  .header-inner { padding: 0 14px; gap: 8px; }
  .logo-text { font-size: 18px; letter-spacing: 2px; }
  .logo-icon { width: 36px; height: 36px; font-size: 18px; }
  .header-icons { gap: 2px; }
  .hdr-icon-btn svg { width: 22px; height: 22px; }
  .hamburger { width: 28px; height: 28px; padding: 0; gap: 4px; }
  .hamburger span { width: 22px; height: 1.5px; }

  /* iOS form-zoom prevention */
  input[type="text"],
  input[type="email"],
  input[type="search"],
  input[type="tel"],
  input[type="password"],
  input[type="number"],
  textarea,
  select { font-size: 16px !important; }
  .header-search input,
  .drawer-search input { font-size: 16px; padding: 12px 14px; }

  .section-head { margin-bottom: 28px; }
  .section-head p { font-size: 13px; }

  /* Product cards — mobile typography */
  .product-card .product-info h3,
  .product-card .product-info .product-name {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 4px;
  }
  .product-card .product-info .metal,
  .product-card .product-info .product-metal {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .product-card .product-price { gap: 6px; }
  .product-card .price-now,
  .product-card .price-current { font-size: 13px; font-weight: 600; }
  .product-card .price-was,
  .product-card .price-old { font-size: 11px; }
  .product-card .price-pct,
  .product-card .price-discount { font-size: 10px; }

  /* Always-visible wishlist on mobile (no hover) */
  .wishlist-btn,
  .product-wish-btn {
    opacity: 1;
    transform: scale(1);
    width: 32px;
    height: 32px;
  }
  .wishlist-btn svg,
  .product-wish-btn svg { width: 14px; height: 14px; }

  /* Quick-add off on mobile */
  .quick-add { display: none; }

  /* Add-to-cart touch target */
  .add-cart-btn { padding: 12px 10px; font-size: 11px; min-height: 44px; }

  /* Global touch targets ≥44px */
  .btn-primary,
  .btn-outline,
  .btn-white,
  .checkout-btn,
  .sticky-checkout-btn,
  .sticky-cart,
  .sticky-buy,
  .btn-add-cart,
  .btn-buy-now,
  .load-more-btn,
  .mob-filter-btn,
  .mob-sort-btn,
  .drawer-close,
  .footer-newsletter button { min-height: 44px; }

  /* Page titlebar */
  .page-titlebar { padding: 14px 0; }
  .page-titlebar-inner { gap: 4px; }
  .page-title { font-size: 20px; margin: 2px 0; }
  .breadcrumb { font-size: 11px; margin-bottom: 2px; }

  /* Sort sheet */
  .sort-sheet { padding: 20px 16px 24px; }
  .sort-opt { padding: 14px 0; min-height: 44px; }
  .filter-chips-row { gap: 6px; padding: 0 14px 4px; }
  .chip { font-size: 11px; padding: 5px 8px 5px 10px; }

  /* Drawer responsive width */
  .drawer { width: min(86vw, 320px); }
  .drawer-nav-link { padding: 16px 20px; min-height: 48px; }

  /* Announcement bar smaller */
  .announce-bar { padding: 6px 12px; font-size: 11px; letter-spacing: 1px; }

  /* Gold ticker tighter */
  .gold-ticker { padding: 8px 0; }
  .ticker-item { font-size: 11px; letter-spacing: 0.6px; gap: 6px; }

  /* Trust bar */
  .trust-bar { padding: 28px 0; }
  .trust-item { padding: 12px; gap: 8px; }
  .trust-icon svg { width: 28px; height: 28px; }
  .trust-title { font-size: 12px; }
  .trust-desc { font-size: 11px; }

  /* Offer banner */
  .offer-card-overlay { padding: 20px; }
  .offer-card-title { font-size: 22px; margin-bottom: 12px; }
  .offer-card-label { font-size: 10px; letter-spacing: 1.5px; }

  /* Footer mobile */
  footer { padding: 40px 0 0; }
  .footer-brand .logo-text { font-size: 20px; }
  .footer-brand p { font-size: 12px; max-width: 100%; }
  .footer-col h4 { font-size: 11px; margin-bottom: 14px; }
  .footer-col ul { gap: 8px; }
  .footer-col ul li a { font-size: 12px; }
  .footer-newsletter input { font-size: 16px; padding: 12px 14px; }
  .footer-bottom {
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    font-size: 11px;
  }
  .footer-payments { flex-wrap: wrap; }
  .payment-badge { font-size: 9px; padding: 3px 6px; }

  /* Bottom nav touch */
  .bottom-nav-btn { padding: 8px 0; min-height: 52px; font-size: 9px; }
  .bottom-nav-btn svg { width: 18px; height: 18px; }

  /* Review card */
  .review-card { padding: 22px 18px; }
  .review-text { font-size: 14px; }

  .section-divider::before,
  .section-divider::after { max-width: 40px; }

  .fab-whatsapp { z-index: 750; }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE (≤480px) iPhone-class
   ========================================================= */
@media (max-width: 480px) {
  .hero { height: 80vw; min-height: 360px; max-height: 460px; }
  .hero-content { left: 5%; max-width: 90%; }
  .hero-title { font-size: 22px; }
  .hero-label { font-size: 10px; letter-spacing: 2px; margin-bottom: 8px; }
  .btn-primary, .btn-outline { padding: 12px 16px; font-size: 11px; }

  .trust-grid { gap: 12px; }
  .trust-item { padding: 8px; border-right: none; }

  .cat-grid { gap: 10px; }
  .cat-card { min-width: 0; aspect-ratio: 1/1.1; }
  .cat-card-label { padding: 18px 6px 10px; }
  .cat-card-label span { font-size: 11px; letter-spacing: 0.8px; }

  .products-grid { gap: 10px; }
  .product-info { padding: 8px 10px 12px; }

  .section-head h2 { font-size: 22px; }
  .section-head { margin-bottom: 22px; }

  .container { padding: 0 12px; }

  .offer-card { height: 220px; }
  .offer-card-title { font-size: 20px; }
}

/* =========================================================
   GLOBAL — ANTI-OVERFLOW SAFETY
   ========================================================= */
img, svg, video, iframe { max-width: 100%; }
.product-name, .product-title, h1, h2, h3 { overflow-wrap: break-word; word-wrap: break-word; }

/* =========================================================
   MOBILE FIX V3 — Clean ground-up mobile layout
   Photoshoot images are 1200x1800 portrait (3:4)
   Match container aspect to source aspect for natural fit
   ========================================================= */
@media (max-width: 768px) {
  /* ===== HERO ===== */
  .hero {
    height: auto !important;
    aspect-ratio: 4/5 !important;
    min-height: 360px !important;
    max-height: 540px !important;
    width: 100%;
    position: relative;
  }
  .hero-slides { height: 100% !important; }
  .hero-slide img {
    object-fit: cover !important;
    object-position: center 35% !important;
    width: 100%;
    height: 100%;
  }
  /* Stronger gradient bottom-up so text is readable */
  .hero-overlay {
    background: linear-gradient(to bottom,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.45) 55%,
      rgba(0,0,0,0.82) 100%) !important;
  }
  /* Hero content moves to bottom, full width, generous padding */
  .hero-content {
    position: absolute !important;
    top: auto !important;
    bottom: 26px !important;
    left: 18px !important;
    right: 18px !important;
    transform: none !important;
    max-width: 100% !important;
  }
  .hero-label {
    font-size: 9.5px !important;
    letter-spacing: 2px !important;
    margin-botto
}
}


/* ========================================
   PAGINATION — global styles (collection page)
   ======================================== */
nav.pagination, .pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 40px 0 24px !important;
  flex-wrap: wrap !important;
  grid-column: 1 / -1;
}
nav.pagination a,
nav.pagination span,
.pagination a,
.pagination span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 42px !important;
  height: 42px !important;
  padding: 0 14px !important;
  border: 1px solid var(--gray-mid, #e8e4de) !important;
  background: var(--white, #fff) !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  color: var(--black, #1a1410) !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}
nav.pagination a:hover,
.pagination a:hover {
  border-color: var(--gold, #b58b44) !important;
  color: var(--gold, #b58b44) !important;
  background: rgba(212,169,106,0.06) !important;
  transform: translateY(-1px);
}
nav.pagination .current,
nav.pagination [aria-current="page"],
.pagination .current,
.pagination [aria-current="page"] {
  background: var(--gold, #b58b44) !important;
  color: var(--white, #fff) !important;
  border-color: var(--gold, #b58b44) !important;
  font-weight: 600 !important;
}
nav.pagination .pag-prev,
nav.pagination .pag-next,
.pagination .pag-prev,
.pagination .pag-next {
  padding: 0 18px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  min-width: auto !important;
}
@media (max-width: 640px) {
  nav.pagination, .pagination { gap: 6px !important; padding: 28px 0 20px !important; }
  nav.pagination a, nav.pagination span, .pagination a, .pagination span { min-width: 36px !important; height: 36px !important; padding: 0 10px !important; font-size: 12px !important; }
  nav.pagination .pag-prev, nav.pagination .pag-next { padding: 0 12px !important; font-size: 10px !important; }
}


/* Footer social icons — brand original colors */
.footer-social-icon.footer-fb {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
  color: #fff !important;
}
.footer-social-icon.footer-fb:hover {
  background: #166FE5 !important;
  border-color: #166FE5 !important;
  transform: translateY(-1px);
}
.footer-social-icon.footer-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.footer-social-icon.footer-ig:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}


/* Hide Vitals Instagram Feed Widget ONLY on product (PDP) pages */
body.template-product .Vtl-InstagramFeedWidget,
body.template-product .Vtl-InstaFeedWrapperClass,
body.template-product div[class*="Vtl-InstagramFeed"],
body.template-product #vitals-end-section .Vtl-InstagramFeedWidget {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
