/** Shopify CDN: Minification failed

Line 1945:1 Expected "}" to go with "{"

**/
/* ============================================================
   TULI JEWELLERS — Mobile-First UI
   Inspired by CaratLane layout structure
   Brand Colors: White #FFFFFF | Gold #C9A84C | Black #1A1A1A
   ============================================================ */

:root {
  --header-h: 60px;
  --bottom-nav-h: 68px;
  --search-h: 56px;
  --radius-pill: 50px;
  --radius-card: 20px;
  --radius-circle: 50%;
  --gold: #C9A84C;
  --gold-light: #E8D08A;
  --gold-dark: #A8883A;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --gray-50: #FAFAF8;
  --gray-100: #F5F3EE;
  --gray-200: #EBE7DF;
  --gray-400: #B0A898;
  --gray-600: #6B6360;
  --shadow-xs: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
  --transition: all 0.25s ease;
}

/* ============================================================
   GLOBAL MOBILE RESETS
   ============================================================ */
* { -webkit-tap-highlight-color: transparent; }

body {
  background: var(--gray-50);
  padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
  overflow-x: clip; /* keep the fixed bottom nav stuck to the viewport */
}

@media (min-width: 1025px) {
  body { padding-bottom: 0; }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--black);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 8px 12px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
}

/* ============================================================
   HEADER — MOBILE
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow 0.3s ease;
  border-bottom: 1px solid var(--gray-200);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

/* Mobile Header bar */
.header-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 16px;
}

/* Hamburger */
.header-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  flex-shrink: 0;
}

.header-hamburger:active { background: var(--gray-100); }

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* Logo — centred absolutely between hamburger and cart */
.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 150px;
  text-decoration: none;
  /* prevent logo overlapping icons on very small screens */
  pointer-events: auto;
}

.header-logo__img {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

/* Desktop logo (inside desktop header) */
.header-logo--desktop {
  position: static;
  transform: none;
  max-width: 200px;
  text-decoration: none;
}

.header-logo--desktop .header-logo__img {
  height: auto;
  max-height: 46px;
}

/* Header Action Icons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.header-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  color: var(--black);
  font-size: 19px;
  transition: var(--transition);
  text-decoration: none;
}

.header-icon-btn:active { background: var(--gray-100); color: var(--gold); }
.header-icon-btn:hover  { color: var(--gold); }

/* Badge bubble */
.icon-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 17px;
  height: 17px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 3px;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid var(--white);
}

/* Hide desktop nav on mobile */
.header-desktop { display: none; }

/* ============================================================
   DESKTOP HEADER
   ============================================================ */
@media (min-width: 1025px) {
  .header-mobile  { display: none; }
  .header-desktop { display: block; }

  .header-desktop__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 32px;
    max-width: 1360px;
    margin: 0 auto;
  }

  .header-logo--desktop a {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .desktop-nav { flex: 1; display: flex; justify-content: center; }

  .desktop-nav__list {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
    gap: 4px;
  }

  .desktop-nav__item { position: relative; }

  .desktop-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
  }

  .desktop-nav__link:hover { color: var(--gold); background: var(--gray-100); }

  .desktop-mega {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 20px 24px;
    min-width: 200px;
    z-index: 100;
  }

  /* Invisible bridge — covers the 8px gap so the mouse never
     leaves the hover area when moving down to the dropdown */
  .desktop-mega::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
    background: transparent;
  }

  /* Keep open while hovering the item OR the dropdown itself */
  .desktop-nav__item:hover .desktop-mega,
  .desktop-mega:hover { display: flex; gap: 24px; }
  .desktop-mega__col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
  }

  .desktop-mega__col a {
    display: block;
    font-size: 13px;
    color: var(--black);
    padding: 5px 0;
    text-decoration: none;
    transition: var(--transition);
  }

  .desktop-mega__col a:hover { color: var(--gold); padding-left: 4px; }

  .header-actions--desktop { gap: 8px; }

  /* Desktop search dropdown */
  .desktop-search-dropdown {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 16px 0;
    box-shadow: var(--shadow-md);
  }

  .desktop-search-dropdown.open { display: block; }

  .desktop-search-form {
    display: flex;
    gap: 0;
    border: 2px solid var(--gold);
    border-radius: var(--radius-pill);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
  }

  .desktop-search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    background: transparent;
  }

  .desktop-search-submit {
    padding: 12px 20px;
    background: var(--gold);
    border: none;
    color: var(--white);
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
  }

  .desktop-search-submit:hover { background: var(--gold-dark); }
}

/* ============================================================
   MOBILE DRAWER — CATEGORY PHOTO GRID
   ============================================================ */

/* Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.55);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.drawer-overlay.active { opacity: 1; pointer-events: all; }

/* Drawer panel */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -105%;
  width: 100vw;
  height: 100dvh;
  background: var(--white);
  z-index: 1999;
  transition: left 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 12px 0 48px rgba(0,0,0,0.18);
  overflow: hidden;
}
.mobile-drawer.open { left: 0; }

/* ── Drawer top bar ── */
.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--black);
  flex-shrink: 0;
  min-height: 60px;
}

.drawer-top__logo { display: flex; align-items: center; }

.drawer-top__logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  /* invert to white so logo is visible on black background */
  filter: brightness(0) invert(1);
}

.drawer-top__wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 3px;
}

.drawer-top__close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.drawer-top__close:hover  { background: var(--gold); border-color: var(--gold); }
.drawer-top__close:active { transform: scale(0.92); }

/* ── Scrollable body ── */
.drawer-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 16px 14px 40px;
  background: #F7F5F2;
}

/* ── Category grid — 2 columns ── */
.drawer-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

/* ── Individual category card ── */
.drawer-cat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 12px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
  overflow: hidden;
  min-height: 64px;
}

.drawer-cat-card:hover,
.drawer-cat-card:active {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(201,168,76,0.2);
  border-color: var(--gold);
}

/* Thumbnail */
.drawer-cat-card__thumb {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-cat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.drawer-cat-card:hover .drawer-cat-card__img { transform: scale(1.08); }

.drawer-cat-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100);
  color: var(--gold);
  font-size: 20px;
}

/* Label */
.drawer-cat-card__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

/* ── "More Jewellery" button ── */
.drawer-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--black);
  text-decoration: none;
  margin-bottom: 16px;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.drawer-more-btn i { color: var(--gold); font-size: 11px; }
.drawer-more-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 2px 12px rgba(201,168,76,0.15);
}

/* ── Divider ── */
.drawer-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 4px 0 12px;
}

/* ── Quick links ── */
.drawer-quick-links {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.drawer-quick-links li { border-bottom: 1px solid var(--gray-100); }
.drawer-quick-links li:last-child { border-bottom: none; }

.drawer-quick-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition);
}
.drawer-quick-links a i {
  width: 18px;
  text-align: center;
  color: var(--gray-400);
  font-size: 14px;
}
.drawer-quick-links a:hover { color: var(--gold); background: #fffbf0; }
.drawer-quick-links a:hover i { color: var(--gold); }

/* ── Purity badge ── */
.drawer-purity-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #fff8e1, #fff3cd);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  color: #8B6914;
  letter-spacing: 0.3px;
  text-align: center;
}
.drawer-purity-badge i { color: var(--gold); font-size: 14px; }

/* ============================================================
   SEARCH BAR SECTION
   ============================================================ */
.search-bar-section {
  background: var(--white);
  padding: 12px 16px 0;
  position: sticky;
  top: var(--header-h);
  z-index: 900;
  transition: box-shadow 0.3s;
}

.search-bar-section.has-shadow { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.search-bar-wrap { position: relative; }

.search-bar-form { width: 100%; }

.search-bar-inner {
  display: flex;
  align-items: center;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 0 8px 0 16px;
  height: var(--search-h);
  gap: 8px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.search-bar-inner:focus-within {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-gold);
}

.search-bar-icon {
  color: var(--gray-400);
  font-size: 16px;
  flex-shrink: 0;
  transition: color 0.25s;
}

.search-bar-inner:focus-within .search-bar-icon { color: var(--gold); }

.search-bar-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--black);
  caret-color: var(--gold);
}

.search-bar-input::placeholder { color: var(--gray-400); }

.search-bar-submit {
  width: 38px; height: 38px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  transform: scale(1);
}

.search-bar-submit:hover  { background: var(--gold-dark); }
.search-bar-submit:active { transform: scale(0.92); }

/* Search dropdown */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 901;
  max-height: 420px;
  overflow-y: auto;
}

.search-results-dropdown.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.search-result-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
  color: var(--black);
  transition: background 0.2s;
}

.search-result-card:last-child { border-bottom: none; }
.search-result-card:hover { background: var(--gray-50); }

.search-result-card__img {
  width: 56px; height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}

.search-result-card__img img { width: 100%; height: 100%; object-fit: cover; }

.search-result-card__info { flex: 1; min-width: 0; }

.search-result-card__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.search-result-card__meta {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 2px;
}

.search-result-card__price {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.search-result-card__arrow {
  color: var(--gray-400);
  font-size: 11px;
  flex-shrink: 0;
}

.search-results-footer {
  display: block;
  padding: 12px 16px;
  font-size: 12px;
  color: var(--gold);
  text-align: center;
  border-top: 1px solid var(--gray-200);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: var(--gray-50);
}

/* ============================================================
   COLLECTION CIRCLES
   ============================================================ */
.collection-circles-section {
  background: var(--white);
  padding: 20px 0 16px;
  border-bottom: 1px solid var(--gray-100);
}

.collection-circles-swiper {
  padding: 4px 16px 4px !important;
  overflow: visible !important;
}

/* Fix: swiper overflow clip */
.collection-circles-swiper.swiper { overflow: hidden; }
@media (min-width: 1025px) {
  .collection-circles-section {
    display: flex;
    justify-content: center;
  }
  .collection-circles-swiper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 4px 40px !important;
  }
}

.collection-circle-slide {
  width: auto !important;
  flex-shrink: 0;
  padding: 4px 6px;
}

.collection-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  width: 72px;
}

.collection-circle__ring {
  width: 64px; height: 64px;
  border-radius: var(--radius-circle);
  padding: 2.5px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.collection-circle:hover .collection-circle__ring,
.collection-circle:active .collection-circle__ring {
  transform: scale(1.06);
  box-shadow: var(--shadow-gold);
}

.collection-circle__img-wrap {
  width: 100%; height: 100%;
  border-radius: var(--radius-circle);
  overflow: hidden;
  background: var(--gray-100);
  border: 2.5px solid var(--white);
}

.collection-circle__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.collection-circle:hover .collection-circle__img { transform: scale(1.1); }

.collection-circle__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100);
  border-radius: var(--radius-circle);
  color: var(--gold);
  font-size: 22px;
}

.collection-circle__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  letter-spacing: 0.3px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 72px;
  transition: color 0.2s;
}

.collection-circle:hover .collection-circle__label { color: var(--gold); }

/* ============================================================
   HERO BANNER — ROUNDED SWIPER
   ============================================================ */
.hero-section {
  background: var(--white);
  padding: 16px 0 0;
}

.hero-swiper-wrap {
  padding: 0 16px;
}

.hero-swiper {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.hero-swiper-slide { border-radius: var(--radius-card); overflow: hidden; }

.hero-slide-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, var(--black) 0%, #2D2218 100%);
}

@media (min-width: 1025px) {
  .hero-slide-card {
    aspect-ratio: unset;
    height: 60vh;
    max-height: 580px;
  }
  .hero-slide-card__content {
    padding: 48px 64px;
    max-width: 620px;
  }

.hero-slide-card__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-slide-card__bg--placeholder {
  background: linear-gradient(135deg, #1A1A1A 0%, #3D2E1A 50%, #C9A84C20 100%);
}

.hero-slide-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.3) 50%, transparent 100%);
}

.hero-slide-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  max-width: 100%;
  text-align: left;
  color: var(--white);
  z-index: 2;
}
.hero-slide-card__eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
  background: rgba(201,168,76,0.15);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
}

.hero-slide-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5.5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 6px;
}

.hero-slide-card__sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.hero-slide-card__ctas {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.hero-cta-btn:hover  { background: var(--gold-dark); }
.hero-cta-btn:active { transform: scale(0.96); }

.hero-offer-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Swiper dots custom style */
.hero-swiper-pagination {
  position: absolute;
  bottom: 12px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}

.hero-dot {
  display: block;
  width: 6px !important;
  height: 6px !important;
  background: rgba(255,255,255,0.4) !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
}

.hero-dot.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  width: 20px !important;
  border-radius: 4px !important;
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION
   ============================================================ */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--bottom-nav-h);
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 999;
  padding: 0 4px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

@media (min-width: 1025px) {
  .mobile-bottom-nav { display: none; }
}

.bottom-nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  padding: 8px 4px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
  border-radius: 12px;
  position: relative;
}

.bottom-nav-tab:active { transform: scale(0.92); }

.bottom-nav-tab__icon {
  font-size: 20px;
  color: var(--gray-400);
  transition: color 0.25s, transform 0.25s;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-nav-tab__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  transition: inherit;
}

.bottom-nav-tab__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--gray-400);
  text-transform: uppercase;
  transition: color 0.25s;
  white-space: nowrap;
}

.bottom-nav-tab.active .bottom-nav-tab__icon,
.bottom-nav-tab:hover .bottom-nav-tab__icon  { color: var(--gold); transform: translateY(-2px); }

.bottom-nav-tab.active .bottom-nav-tab__label,
.bottom-nav-tab:hover .bottom-nav-tab__label { color: var(--gold); }

/* Center home button */
.bottom-nav-tab--center {
  position: relative;
  top: -10px;
  flex: 0 0 64px;
}

.bottom-nav-tab__center-btn {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white) !important;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.5);
  transition: transform 0.25s, box-shadow 0.25s;
}

.bottom-nav-tab--center:hover .bottom-nav-tab__center-btn,
.bottom-nav-tab--center.active .bottom-nav-tab__center-btn {
  transform: scale(1.08) translateY(0);
  box-shadow: 0 6px 20px rgba(201,168,76,0.6);
}

.bottom-nav-tab--center .bottom-nav-tab__label { color: var(--gold); }

/* Indicator dot for active tab */
.bottom-nav-tab.active::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.bottom-nav-tab--center.active::before { display: none; }

/* ============================================================
   PRODUCT CARDS — PREMIUM MOBILE UPDATE
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 16px;
}

@media (min-width: 640px)  { .products-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 0 20px; } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0; } }

.product-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.product-card__image, .product-card__image-alt {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card__image-alt {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-card__image     { transform: scale(1.06); }
.product-card:hover .product-card__image-alt { opacity: 1; }

/* Wishlist on product card — always visible on mobile */
.product-card__actions {
  position: absolute;
  top: 10px; right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 1;
  transform: none;
  z-index: 2;
}

.product-card__action-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.product-card__action-btn:hover,
.product-card__action-btn.wishlisted {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.product-card__action-btn:active { transform: scale(0.9); }

/* Badges */
.product-card__badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 20px;
  line-height: 1.4;
}

.badge--sale    { background: #E53935; color: #fff; }
.badge--gold    { background: var(--gold); color: #fff; }
.badge--new     { background: var(--black); color: #fff; }
.badge--limited { background: #7B1FA2; color: #fff; }

/* Quick view — swipe up on mobile */
.product-card__quick-view {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,26,26,0.82);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transform: translateY(100%);
  transition: var(--transition);
  cursor: pointer;
  z-index: 2;
}

.product-card:hover .product-card__quick-view {
  opacity: 1;
  transform: translateY(0);
}

/* Card Info */
.product-card__info {
  padding: 12px 12px 14px;
}

.product-card__carat-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-card__carat-badge::before {
  content: '✦';
  font-size: 8px;
}

.product-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__pricing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.price-sale {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

.price-compare {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: var(--gray-400);
  text-decoration: line-through;
}

.price-discount {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #E53935;
  background: rgba(229,57,53,0.1);
  padding: 2px 6px;
  border-radius: 10px;
}

.product-card__add-to-cart {
  width: 100%;
  margin-top: 10px;
  padding: 9px;
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--black);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  display: none;
}

.product-card:hover .product-card__add-to-cart { display: block; }
.product-card__add-to-cart:hover { background: var(--gold); border-color: var(--gold); }

/* ============================================================
   HOMEPAGE SECTION WRAPPERS — MOBILE
   ============================================================ */
.section-pad {
  padding: 24px 0;
}

.section-pad-sm { padding: 16px 0; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 5vw, 38px);
  font-weight: 500;
  color: var(--black);
  text-align: center;
  margin-bottom: 4px;
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-title-line::before,
.section-title-line::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.section-title-line::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

/* Section header with View All link */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 16px;
  margin-bottom: 16px;
}

.section-header .section-title  { text-align: left; margin-bottom: 0; font-size: 20px; }
.section-header .section-view-all {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   TRUST BADGES — MOBILE HORIZONTAL SCROLL
   ============================================================ */
.trust-badges {
  padding: 20px 0;
  background: var(--gray-100);
  overflow-x: auto;
  scrollbar-width: none;
}

.trust-badges::-webkit-scrollbar { display: none; }

.trust-badges-grid {
  display: flex;
  gap: 0;
  padding: 0 16px;
  width: max-content;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  text-align: center;
  min-width: 110px;
  border-right: 1px solid var(--gray-200);
}

.trust-badge:last-child { border-right: none; }

.trust-badge__icon {
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  transition: var(--transition);
}

.trust-badge:hover .trust-badge__icon {
  background: var(--gold);
  color: var(--white);
}

.trust-badge__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}

.trust-badge__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  color: var(--gray-600);
  line-height: 1.4;
}

/* ============================================================
   HOMEPAGE CONTENT SPACING
   ============================================================ */
/* Space between sections on mobile */
#shop-by-category,
#featured-products,
#video-showcase,
#bestsellers,
#sale-section,
.testimonials,
.newsletter {
  margin-bottom: 8px;
}

/* Rounded background sections */
#featured-products {
  background: var(--gray-50);
}

/* ============================================================
   WISHLIST SIDEBAR
   ============================================================ */
.wishlist-sidebar {
  position: fixed;
  top: 0; right: -110%;
  width: min(100vw, 400px);
  height: 100dvh;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  z-index: 2001;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}

.wishlist-sidebar.open { right: 0; }

.wishlist-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--black);
  color: var(--white);
  flex-shrink: 0;
}

.wishlist-sidebar__header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
}

.wishlist-sidebar__close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.wishlist-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.wishlist-overlay.active { opacity: 1; pointer-events: all; }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast-notification {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9999;
  border-left: 3px solid var(--gold);
}

@media (min-width: 1025px) {
  .toast-notification { bottom: 30px; }
}

.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: none;
}

/* ============================================================
   QUICK VIEW MODAL
   ============================================================ */
.quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

@media (min-width: 768px) {
  .quick-view-modal { align-items: center; }
}

.quick-view-modal.active { opacity: 1; pointer-events: all; }

.quick-view-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.quick-view-modal__content {
  position: relative;
  background: var(--white);
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-height: 90dvh;
  overflow-y: auto;
  padding: 32px 20px 40px;
  z-index: 1;
}

@media (min-width: 768px) {
  .quick-view-modal__content {
    border-radius: 20px;
    max-width: 700px;
    max-height: 85vh;
    padding: 40px;
  }
}

.quick-view-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
  border: none;
  color: var(--black);
}

.quick-view-modal__close:hover { background: var(--gold); color: var(--white); }

/* ============================================================
   FOOTER — MOBILE ADJUSTMENTS
   ============================================================ */
.site-footer { margin-bottom: 0; }

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 40px 20px 32px;
  }

  .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px)  { .container { padding: 0 24px; } }
@media (min-width: 1200px) { .container { padding: 0 40px; } }

.animate-fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.animate-fade-up.in-view { opacity: 1; transform: translateY(0); }

.view-all-wrap { text-align: center; margin-top: 28px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary:hover  { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--black);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary:hover { background: var(--black); color: var(--white); }

/* visually-hidden */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (min-width: 1025px) {
  .hero-slide-card__content {
    padding: 48px 64px;
    max-width: 620px;
  }
  .hero-slide-card__eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    padding: 6px 14px;
  }
  .hero-slide-card__title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .hero-slide-card__sub {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .hero-cta-btn {
    font-size: 13px;
    padding: 14px 32px;
  }
}
/* Mobile hero — correct size + text fix */
@media (max-width: 1024px) {
  .hero-slide-card {
    aspect-ratio: 4/5 !important;
    height: auto !important;
    max-height: none !important;
  }
  .hero-slide-card__content {
    left: 0 !important;
    right: 0 !important;
    max-width: 100% !important;
    text-align: left !important;
    padding: 24px 20px !important;
  }
  .hero-slide-card__title {
    font-size: clamp(24px, 6vw, 34px) !important;
    color: #ffffff !important;
  }
  .hero-slide-card__sub {
    font-size: 12px !important;
    color: rgba(255,255,255,0.85) !important;
  }
  .hero-slide-card__eyebrow {
    color: #C9A84C !important;
  }
  .hero-slide-card__ctas {
    justify-content: flex-start !important;
  }
}
@media (min-width: 1025px) {
  .hero-slide-card__content {
    left: auto;
    right: 0;
    max-width: 620px;
    text-align: right;
    padding: 48px 64px;
  }
  .hero-slide-card__ctas {
    justify-content: flex-end;
  }
}
/* ============================================================
   HERO SLIDER — FINAL OVERRIDE (wins by source order)
   ============================================================ */

/* MOBILE & TABLET (default) */
.hero-slide-card {
  aspect-ratio: 4 / 5 !important;
  height: auto !important;
}
.hero-slide-card__content {
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  max-width: 100% !important;
  text-align: left !important;
  padding: 24px 20px !important;
}
.hero-slide-card__title {
  font-size: clamp(26px, 7vw, 38px) !important;
}
.hero-slide-card__sub {
  font-size: 12px !important;
}
.hero-slide-card__ctas {
  justify-content: flex-start !important;
}

/* DESKTOP */
@media (min-width: 1025px) {
  .hero-slide-card {
    aspect-ratio: unset !important;
    height: 55vh !important;
    max-height: 520px !important;
  }
  .hero-slide-card__content {
    left: auto !important;
    right: 0 !important;
    max-width: 620px !important;
    text-align: right !important;
    padding: 48px 64px !important;
  }
  .hero-slide-card__title {
    font-size: 56px !important;
  }
  .hero-slide-card__sub {
    font-size: 16px !important;
  }
  .hero-slide-card__ctas {
    justify-content: flex-end !important;
  }
}
/* ============================================================
   HERO TEXT — GOD MODE BULLETPROOF VISIBILITY (mobile/tablet)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-swiper .swiper-slide .hero-slide-card .hero-slide-card__content {
    position: absolute !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    padding: 48px 20px 24px !important;
    z-index: 5 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: linear-gradient(to top,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.45) 55%,
      transparent 100%) !important;
  }
  .hero-swiper .hero-slide-card__title {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.7) !important;
  }
  .hero-swiper .hero-slide-card__sub {
    color: rgba(255,255,255,0.9) !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7) !important;
  }
  .hero-swiper .hero-slide-card__eyebrow {
    opacity: 1 !important;
    visibility: visible !important;
  }
}