/** Shopify CDN: Minification failed

Line 5165:0 Unexpected "}"

**/
/* ==========================================================================
   KIYA SILVER JEWELLERY - LUXURY DESIGN SYSTEM & THEME STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Color Palette */
  --color-warm-ivory: #FAF8F2;
  --color-soft-cream: #F3EEE5;
  --color-charcoal: #24211D;
  --color-charcoal-light: #3D3935;
  --color-antique-gold: #B88A3B;
  --color-champagne-gold: #C6A15B;
  --color-gold-light: #E5C384;
  --color-white: #FFFFFF;
  --color-border: rgba(36, 33, 29, 0.12);
  --color-border-gold: rgba(184, 138, 59, 0.25);
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Spacing & Layout */
  --container-max-width: 1400px;
  --header-height: 90px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
}

body {
  background-color: var(--color-warm-ivory);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative;
  margin: 0;
  padding: 0;
}

main, #MainContent, .content-for-layout, .container, .site-header, .site-footer, .Kiya-unique-footer {
  max-width: 100vw !important;
  overflow-x: hidden;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Global Website Typography Enforcement */
*, *::before, *::after {
  font-family: 'Montserrat', sans-serif !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6, .heading-serif, .serif-title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
}

.text-gold {
  color: var(--color-antique-gold);
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.kiya-whatsapp-icon,
.kiya-whatsapp-custom-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .kiya-whatsapp-floating-wrap {
    right: 16px;
    bottom: 80px;
  }

  .kiya-whatsapp-btn {
    width: 52px;
    height: 52px;
  }

  .kiya-whatsapp-icon,
  .kiya-whatsapp-custom-img {
    width: 28px;
    height: 28px;
  }

  .kiya-whatsapp-tooltip {
    display: none !important;
  }

  .container {
    padding: 0 1.25rem;
  }
}

/* ==========================================================================
   BUTTONS & ACCENTS
   ========================================================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background-color: var(--color-charcoal);
  color: var(--color-warm-ivory);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid var(--color-charcoal);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-antique-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--color-white);
  border-color: var(--color-antique-gold);
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem 2.25rem;
  background-color: transparent;
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid var(--color-charcoal);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: var(--color-charcoal);
  color: var(--color-warm-ivory);
}

.btn-gold {
  background-color: var(--color-antique-gold);
  color: var(--color-white);
  border: 1px solid var(--color-antique-gold);
}

.btn-gold:hover {
  background-color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.link-underline {
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  padding-bottom: 4px;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-antique-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Section Header Shared Component */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-antique-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.section-header .title {
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--color-charcoal);
}

.gold-divider {
  width: 50px;
  height: 1px;
  background-color: var(--color-antique-gold);
  margin: 1.25rem auto 0;
}

/* ==========================================================================
   HEADER & RESPONSIVE NAVIGATION
   ========================================================================== */

.announcement-bar {
  background-color: var(--color-charcoal);
  color: var(--color-warm-ivory);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border-gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-warm-ivory);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.site-header.is-scrolled {
  background-color: rgba(250, 248, 242, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.1rem 3rem;
  gap: 1rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-search-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  cursor: pointer;
  background: none;
  border: none;
}

.header-search-btn:hover {
  color: var(--color-antique-gold);
}

.header-logo {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo img {
  height: 65px;
  max-height: 65px;
  width: auto;
  object-fit: contain;
  transition: max-height 0.3s ease;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--color-charcoal);
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.header-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  position: relative;
  cursor: pointer;
  min-width: 36px;
  min-height: 36px;
  background: none;
  border: none;
}

.header-icon-link:hover {
  color: var(--color-antique-gold);
}

.cart-count-badge {
  background-color: var(--color-antique-gold);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -2px;
  right: -6px;
}

.mobile-only-icon {
  display: none;
}

.desktop-only-icon {
  display: flex;
}

/* Nav Menu Desktop */
.header-nav {
  border-top: 1px solid rgba(36, 33, 29, 0.06);
  padding: 0.7rem 0;
  text-align: center;
}

.nav-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-charcoal);
  padding: 0.4rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-antique-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--color-antique-gold);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--color-charcoal);
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   LUXURY MOBILE NAVIGATION DRAWER & BRAND LOGO
   ========================================================================== */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(15, 14, 12, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 88%;
  max-width: 380px;
  background: #FAF8F5;
  box-shadow: 15px 0 45px rgba(0, 0, 0, 0.25);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10001;
}

.mobile-nav-backdrop.is-active .mobile-nav-drawer {
  transform: translateX(0);
}

/* Drawer Header with Logo */
.mobile-nav-header {
  padding: 1.25rem 1.4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ECE5DA;
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 2;
}

.mobile-nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-nav-logo-link {
  display: inline-block;
  line-height: 1;
}

.mobile-nav-logo-img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.mobile-nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #171513;
  line-height: 1;
}

.mobile-nav-subtext {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #B88A3B;
  margin-top: 4px;
  text-transform: uppercase;
}

.mobile-nav-close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAF8F5;
  border: 1px solid #ECE5DA;
  border-radius: 50%;
  color: #171513;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.2rem;
}

.mobile-nav-close:hover {
  background: #171513;
  color: #FFFFFF;
  border-color: #171513;
  transform: scale(1.06);
}

/* Quick Search Box */
.mobile-nav-search-box {
  padding: 0.85rem 1.4rem;
  border-bottom: 1px solid #ECE5DA;
  background: #FAF8F5;
}

.mobile-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  background: #FFFFFF;
  border: 1px solid #DCD4C7;
  border-radius: 6px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: border-color 0.2s ease;
}

.mobile-search-input-wrap:focus-within {
  border-color: #B88A3B;
}

.mobile-search-input-wrap svg {
  color: #B88A3B;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.mobile-search-input {
  width: 100%;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.825rem;
  color: #171513;
  background: transparent;
}

/* Drawer Content & Menu List */
.mobile-nav-content {
  flex: 1;
  padding: 0.75rem 0 1.5rem;
}

.mobile-nav-section-title {
  padding: 0.5rem 1.4rem 0.35rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #8C857B;
  text-transform: uppercase;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #171513;
  text-decoration: none;
  border-bottom: 1px solid rgba(236, 229, 218, 0.6);
  transition: all 0.2s ease;
}

.nav-item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.nav-label {
  font-weight: 600;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background-color: #FFFFFF;
  color: #B88A3B;
  padding-left: 1.65rem;
}

.nav-arrow {
  font-size: 1.25rem;
  color: #B88A3B;
  font-weight: 300;
}

.nav-badge-pill {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #EDE6D8;
  color: #8C6623;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.nav-badge-gold {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #B88A3B 0%, #D4AF37 100%);
  color: #FFFFFF;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Trust Cards Inside Drawer */
.mobile-nav-trust-card {
  margin: 1.25rem 1.4rem 0.5rem;
  padding: 0.85rem 1rem;
  background: #FFFFFF;
  border: 1px solid #ECE5DA;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-card-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-card-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.trust-card-item strong {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: #171513;
}

.trust-card-item small {
  display: block;
  font-size: 0.68rem;
  color: #77716A;
}

/* Drawer Footer */
.mobile-nav-footer {
  padding: 1.25rem 1.4rem;
  border-top: 1px solid #ECE5DA;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mobile-wa-concierge-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  background-color: #25D366;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: all 0.2s ease;
}

.mobile-wa-concierge-btn:hover {
  background-color: #1EBE5D;
  transform: translateY(-1px);
}

.mobile-footer-copy {
  font-size: 0.65rem;
  color: #8C857B;
  text-align: center;
}

/* RESPONSIVE HEADER MEDIA QUERIES */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .desktop-only-icon {
    display: none;
  }
  .mobile-only-icon {
    display: flex;
  }
}

@media (max-width: 768px) {
  .announcement-bar {
    font-size: 0.65rem;
    padding: 0.4rem 0.5rem;
    letter-spacing: 0.15em;
  }
  .header-inner {
    padding: 0.75rem 1rem;
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
  }
  .header-left {
    gap: 0.5rem;
  }
  .header-right {
    gap: 0.75rem;
  }
  .header-logo img {
    height: 44px;
    max-height: 44px;
  }
  .header-logo-text {
    font-size: 1.6rem;
  }
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  height: 85vh;
  min-height: 550px;
  max-height: 850px;
  overflow: hidden;
  background-color: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 14s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(36, 33, 29, 0.35) 0%, rgba(36, 33, 29, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-subtitle {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-champagne-gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-warm-ivory);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-actions .btn-primary {
  background-color: var(--color-warm-ivory);
  color: var(--color-charcoal);
  border-color: var(--color-warm-ivory);
}

.hero-actions .btn-primary:hover {
  color: var(--color-white);
}

.hero-actions .btn-secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-actions .btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-charcoal);
}

@media (max-width: 768px) {
  .hero-section {
    height: 75vh;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   COLLECTIONS CATEGORY GRID
   ========================================================================== */

.collections-section {
  padding: 6rem 0;
  background-color: var(--color-warm-ivory);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.collection-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
}

.collection-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(36, 33, 29, 0.1) 0%, rgba(36, 33, 29, 0.65) 100%);
  transition: var(--transition-smooth);
}

.collection-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--color-white);
  z-index: 2;
}

.collection-card-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.collection-card-cta {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-champagne-gold);
  font-weight: 500;
}

.collection-card:hover .collection-card-img {
  transform: scale(1.08);
}

.collection-card:hover .collection-card-overlay {
  background: linear-gradient(180deg, rgba(36, 33, 29, 0.2) 0%, rgba(36, 33, 29, 0.75) 100%);
}

@media (max-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PRODUCT CARDS & FEATURED PRODUCTS GRID
   ========================================================================== */

.products-section {
  padding: 6rem 0;
  background-color: var(--color-soft-cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem 1.75rem;
}

.product-card {
  position: relative;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-2px);
}

/* 4:5 Image Wrapper */
.product-card-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1.15;
  max-height: 380px;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-warm-ivory);
  margin-bottom: 1.1rem;
  border: 1px solid rgba(184, 138, 59, 0.15);
  border-radius: 8px;
}

.product-card-image-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), opacity 500ms ease;
}

.product-card-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* Smooth zoom (1.035x) and secondary image transition on desktop hover */
.product-card-image-wrapper:hover .product-card-img {
  transform: scale(1.035);
}

.product-card-image-wrapper:hover .product-card-img-hover {
  opacity: 1;
  transform: scale(1.035);
}

.product-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-soft-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  color: var(--color-antique-gold);
}

/* Badges: Sale, Sold Out, Bestseller */
.product-card-badges {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  pointer-events: none;
}

.product-card-badge {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  line-height: 1;
  white-space: nowrap !important;
}

.badge-sale {
  background-color: #B88A3B;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(184, 138, 59, 0.25);
}

.badge-sold-out {
  background-color: #171513;
  color: #FAF8F2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.badge-bestseller {
  background-color: rgba(250, 248, 242, 0.92);
  color: #171513;
  border: 1px solid rgba(184, 138, 59, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.badge-new {
  background-color: #171513;
  color: #FAF8F2;
}

/* Luxury Circular Wishlist Button */
.btn-wishlist {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(184, 138, 59, 0.3);
  color: #171513;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-wishlist svg {
  width: 17px;
  height: 17px;
  transition: fill 0.3s ease, stroke 0.3s ease, transform 0.3s ease;
}

.btn-wishlist:hover {
  transform: scale(1.08);
  background: #FAF8F2;
  border-color: #B88A3B;
  color: #B88A3B;
}

.btn-wishlist:hover svg,
.btn-wishlist.is-wishlisted svg {
  fill: #B88A3B;
  stroke: #B88A3B;
}

.btn-wishlist.is-wishlisted {
  background: #FAF8F2;
  border-color: #B88A3B;
  color: #B88A3B;
}

/* Desktop Hover Quick Action Overlay */
.product-card-quick-action {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(180deg, rgba(23, 21, 19, 0) 0%, rgba(23, 21, 19, 0.58) 100%);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card:hover .product-card-quick-action,
.product-card-image-wrapper:hover .product-card-quick-action {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.btn-card-action {
  width: 100%;
  padding: 0.8rem 1rem;
  background-color: #171513;
  color: #FAF8F2;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  display: block;
  white-space: nowrap !important;
}

.btn-card-action:hover {
  background-color: #B88A3B;
  color: #FFFFFF;
  border-color: #B88A3B;
}

.btn-card-action.btn-card-disabled,
.btn-card-mobile.btn-card-disabled {
  background-color: rgba(23, 21, 19, 0.7);
  color: #9B968E;
  cursor: not-allowed;
  border-color: transparent;
}

/* Editorial Product Information */
.product-card-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  width: 100%;
}

.product-card-metal {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #B88A3B;
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.25;
  font-weight: 500;
  color: #171513 !important;
  margin-bottom: 0.45rem;
  transition: color 0.3s ease;
  width: 100%;
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

.product-card-title a {
  color: #171513 !important;
  text-decoration: none;
  display: block;
  width: 100%;
  word-wrap: break-word;
}

.product-card-title a:hover {
  color: #B88A3B !important;
}

/* Price Row Alignment & Single-Line Guarantee */
.product-card-price,
.product-info-price-row,
.product-price-row,
.cart-drawer-item-price {
  font-family: var(--font-body);
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  margin-top: auto;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  width: 100%;
}

.product-card-price .price-from {
  font-size: 12px;
  color: #77716A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap !important;
}

.product-card-price .price-current,
.product-price,
.price-current {
  font-size: 16px;
  font-weight: 600;
  color: #171513;
  letter-spacing: -0.01em;
  white-space: nowrap !important;
  word-break: keep-all !important;
  display: inline-block;
}

.product-card-price .compare-at-price,
.compare-at-price {
  font-size: 13.5px;
  font-weight: 400;
  color: #9B968E;
  text-decoration: line-through;
  white-space: nowrap !important;
  word-break: keep-all !important;
  display: inline-block;
}

/* Subtle Editorial View Details Text Link */
.product-card-view-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #77716A;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.2rem;
  white-space: nowrap !important;
}

.product-card-view-details .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.product-card-view-details:hover {
  color: #B88A3B;
}

.product-card-view-details:hover .arrow {
  transform: translateX(4px);
}

/* Mobile Quick Action */
.product-card-mobile-action {
  display: none;
  width: 100%;
  margin-top: 0.65rem;
}

.btn-card-mobile {
  display: block;
  width: 100%;
  padding: 0.65rem 0.5rem;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  background-color: #171513;
  color: #FAF8F2;
  border: 1px solid #171513;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-card-mobile:active {
  background-color: #B88A3B;
  border-color: #B88A3B;
}

/* Legacy button fallbacks for backwards compatibility */
.btn-quick-add {
  display: block;
  white-space: nowrap !important;
}

/* Responsive Grid & Mobile Viewport Rules */
@media (max-width: 1200px) {
  .product-grid,
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.35rem;
  }
}

@media (max-width: 860px) {
  .product-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.15rem;
  }
  
  .product-card-title {
    font-size: 17.5px;
    min-height: 2.5em;
  }
}

@media (max-width: 768px) {
  /* Hide desktop hover quick action overlay on touch/mobile devices */
  .product-card-quick-action {
    display: none !important;
  }
  
  /* Show compact mobile button below price without covering photography */
  .product-card-mobile-action {
    display: block;
  }
  
  .product-card-title {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 0.35rem;
    min-height: 2.5em;
  }
  
  .product-card-metal {
    font-size: 9.5px;
    letter-spacing: 1.8px;
  }
  
  .product-card-price .price-current,
  .price-current {
    font-size: 14.5px;
  }
  
  .product-card-price .compare-at-price,
  .compare-at-price {
    font-size: 12px;
  }
  
  .product-card-view-details {
    display: none; /* Keep mobile card clean and focused */
  }
  
  .btn-wishlist {
    width: 32px;
    height: 32px;
    top: 0.55rem;
    right: 0.55rem;
  }
  
  .btn-wishlist svg {
    width: 15px;
    height: 15px;
  }
  
  .product-card-badges {
    top: 0.55rem;
    left: 0.55rem;
  }
  
  .product-card-badge {
    padding: 0.25rem 0.45rem;
    font-size: 8.5px;
    letter-spacing: 1.2px;
  }
}

@media (max-width: 480px) {
  .product-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem 0.65rem;
  }
  
  .product-card-image-wrapper {
    margin-bottom: 0.75rem;
  }
  
  .product-card-title {
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: 0.25rem;
    min-height: 2.5em;
  }

  .product-card-metal {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
  
  .product-card-price .price-current,
  .price-current {
    font-size: 13.5px;
  }

  .product-card-price .compare-at-price,
  .compare-at-price {
    font-size: 11.5px;
  }

  .btn-card-mobile {
    padding: 0.5rem 0.3rem;
    font-size: 9.5px;
    letter-spacing: 0.08em;
  }
}

/* ==========================================================================
   BRAND STORY & LUXURY BANNER
   ========================================================================== */

.story-section {
  padding: 7rem 0;
  background-color: var(--color-warm-ivory);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.story-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  padding-right: 2rem;
}

.story-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-antique-gold);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.story-title {
  font-size: 3.25rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.story-description {
  font-size: 1rem;
  color: var(--color-charcoal-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story-content {
    padding-right: 0;
  }
}

.luxury-banner {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-content {
  max-width: 750px;
  margin: 0 auto;
}

.banner-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-warm-ivory);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.banner-content .btn-primary {
  background-color: var(--color-warm-ivory);
  color: var(--color-charcoal);
  border-color: var(--color-warm-ivory);
}

.banner-content .btn-primary:hover {
  color: var(--color-white);
}

/* ==========================================================================
   WHY KIYA FEATURES & INSTAGRAM
   ========================================================================== */

.features-section {
  padding: 5rem 0;
  background-color: var(--color-warm-ivory);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.feature-item {
  padding: 1.5rem;
}

.feature-icon {
  margin-bottom: 1rem;
  color: var(--color-antique-gold);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--color-charcoal-light);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.instagram-section {
  padding: 6rem 0;
  background-color: var(--color-soft-cream);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 33, 29, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-item:hover img {
  transform: scale(1.08);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

@media (max-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   NEWSLETTER & FOOTER
   ========================================================================== */

.newsletter-section {
  padding: 6rem 0;
  background-color: var(--color-warm-ivory);
  text-align: center;
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.newsletter-desc {
  font-size: 0.95rem;
  color: var(--color-charcoal-light);
  margin-bottom: 2.25rem;
}

.newsletter-form {
  display: flex;
  border-bottom: 1.5px solid var(--color-charcoal);
  padding-bottom: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--color-charcoal);
}

.newsletter-input::placeholder {
  color: rgba(36, 33, 29, 0.5);
  font-style: italic;
}

.newsletter-submit {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-antique-gold);
  padding: 0.5rem 1rem;
  transition: var(--transition-fast);
}

.newsletter-submit:hover {
  color: var(--color-charcoal);
}

.site-footer {
  background-color: var(--color-charcoal);
  color: var(--color-warm-ivory);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--color-border-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col-brand .footer-logo-text {
  color: var(--color-warm-ivory);
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(250, 248, 242, 0.7);
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-champagne-gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  font-size: 0.8125rem;
  color: rgba(250, 248, 242, 0.75);
}

.footer-links a:hover {
  color: var(--color-champagne-gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 248, 242, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(250, 248, 242, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   CART DRAWER & MODALS
   ========================================================================== */

.cart-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 33, 29, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-drawer-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background-color: var(--color-warm-ivory);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.cart-drawer-backdrop.is-active .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
}

.cart-drawer-close {
  font-size: 1.5rem;
  color: var(--color-charcoal);
  cursor: pointer;
  line-height: 1;
}

.free-shipping-bar {
  padding: 0.85rem 2rem;
  background-color: var(--color-soft-cream);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.75rem;
  text-align: center;
  color: var(--color-charcoal);
}

.free-shipping-progress {
  height: 4px;
  background-color: rgba(36, 33, 29, 0.1);
  margin-top: 0.5rem;
  border-radius: 2px;
  overflow: hidden;
}

.free-shipping-fill {
  height: 100%;
  background-color: var(--color-antique-gold);
  width: 65%;
  transition: width 0.4s ease;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
}

.cart-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background-color: var(--color-soft-cream);
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.cart-item-variant {
  font-size: 0.75rem;
  color: rgba(36, 33, 29, 0.6);
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.qty-input {
  width: 32px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
}

.cart-item-remove {
  font-size: 0.75rem;
  text-decoration: underline;
  color: rgba(36, 33, 29, 0.5);
  cursor: pointer;
}

.cart-item-remove:hover {
  color: #c0392b;
}

.cart-drawer-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-soft-cream);
}

.cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.cart-drawer-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-drawer-buttons .btn-primary {
  width: 100%;
}

.cart-drawer-buttons .btn-secondary {
  width: 100%;
}

/* Search Modal Overlay */
.search-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 248, 242, 0.98);
  backdrop-filter: blur(10px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 4rem 2rem;
}

.search-modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.search-modal-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-charcoal);
}

.search-modal-container {
  max-width: 800px;
  width: 100%;
  margin: 4rem auto 0;
}

.search-modal-input-wrapper {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--color-charcoal);
  padding-bottom: 1rem;
}

.search-modal-input {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-charcoal);
}

.search-modal-input::placeholder {
  color: rgba(36, 33, 29, 0.3);
}

/* Mobile Nav Drawer */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 33, 29, 0.5);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}



/* ==========================================================================
   PRODUCT PAGE DETAIL (MAIN PRODUCT)
   ========================================================================== */

.product-detail-section {
  padding: 4rem 0 6rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-gallery-main {
  width: 100%;
  aspect-ratio: 4/5;
  background-color: var(--color-soft-cream);
  overflow: hidden;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: flex;
  gap: 1rem;
}

.thumb-item {
  width: 90px;
  aspect-ratio: 4/5;
  background-color: var(--color-soft-cream);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.thumb-item.is-active, .thumb-item:hover {
  border-color: var(--color-antique-gold);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-sticky {
  position: sticky;
  top: 120px;
}

.product-info-title {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.product-info-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.product-variant-picker {
  margin-bottom: 2rem;
}

.variant-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.variant-option-btn {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--color-border);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.variant-option-btn.is-selected {
  border-color: var(--color-charcoal);
  background-color: var(--color-charcoal);
  color: var(--color-warm-ivory);
}

.product-actions-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.product-qty-add-row {
  display: flex;
  gap: 1rem;
}

.product-qty-add-row .qty-selector {
  height: 52px;
  padding: 0 0.5rem;
}

.product-qty-add-row .btn-primary {
  flex: 1;
  height: 52px;
}

.shopify-payment-button__button {
  width: 100%;
  height: 52px;
  background-color: var(--color-antique-gold);
  color: var(--color-white);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 0;
}

.product-accordion {
  border-top: 1px solid var(--color-border);
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-header {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.accordion-content {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--color-charcoal-light);
  line-height: 1.7;
  display: none;
}

.accordion-item.is-open .accordion-content {
  display: block;
}

@media (max-width: 900px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   ATTRACTIVE BUY NOW BUTTON & GOLD SHIMMER
   ========================================================================== */

.btn-buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #B88A3B 0%, #E5C384 50%, #B88A3B 100%);
  background-size: 200% auto;
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(184, 138, 59, 0.35);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  animation: goldPulse 3s infinite;
}

@keyframes goldPulse {
  0% { box-shadow: 0 0 0 0 rgba(184, 138, 59, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(184, 138, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 138, 59, 0); }
}

.btn-buy-now:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 138, 59, 0.5);
}

/* Owner Profile & Story Styling */
.owner-badge-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: var(--color-charcoal);
  color: var(--color-champagne-gold);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-antique-gold);
}

.story-lead {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.owner-signature-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.owner-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
  color: var(--color-charcoal);
}

.owner-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-antique-gold);
}

/* Footer Enhancements */
.footer-badge-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 0.85rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px dashed var(--color-border-gold);
  font-size: 0.75rem;
  color: var(--color-champagne-gold);
}

.footer-wa-link {
  color: #25D366 !important;
  font-weight: 600;
}

.footer-payment-badges span {
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-champagne-gold);
}

/* 404 Luxury Page */
.error-page-wrapper {
  padding: 8rem 0;
  background-color: var(--color-warm-ivory);
  text-align: center;
}

.error-card {
  max-width: 650px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background-color: #FFFFFF;
  border: 1px solid var(--color-border-gold);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.error-code {
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 300;
  color: var(--color-antique-gold);
  line-height: 1;
}

.error-heading {
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.error-desc {
  font-size: 0.95rem;
  color: var(--color-charcoal-light);
  margin-bottom: 2.5rem;
}

.error-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.error-search-box form {
  display: flex;
  max-width: 450px;
  margin: 0 auto 2rem;
  border-bottom: 1.5px solid var(--color-charcoal);
}

.error-search-box input {
  flex: 1;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.error-search-box button {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--color-antique-gold);
}

.error-help-link {
  font-size: 0.85rem;
  color: var(--color-charcoal-light);
}

.error-help-link a {
  color: var(--color-antique-gold);
  font-weight: 600;
}

/* ==========================================================================
   ULTRA UNIQUE GLASSMORPHIC HERO BANNER
   ========================================================================== */

.hero-luxury-split {
  height: 90vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(36, 33, 29, 0.75) 0%, rgba(36, 33, 29, 0.45) 60%, rgba(36, 33, 29, 0.7) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-glass-card {
  max-width: 620px;
  padding: 3.5rem 3rem;
  background: rgba(36, 33, 29, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229, 195, 132, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  animation: heroCardFadeUp 1s ease-out;
}

@keyframes heroCardFadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background-color: rgba(184, 138, 59, 0.2);
  border: 1px solid var(--color-champagne-gold);
  color: var(--color-gold-light);
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #27ae60;
  border-radius: 50%;
  box-shadow: 0 0 8px #27ae60;
}

.hero-luxury-split .hero-title {
  font-size: 4rem;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-luxury-split .hero-title i {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-gold-light);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.highlight-chip {
  font-size: 0.75rem;
  color: rgba(250, 248, 242, 0.9);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-btn-main {
  padding: 1rem 2rem !important;
  font-size: 0.8125rem !important;
}

.hero-btn-sec {
  padding: 1rem 2rem !important;
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 768px) {
  .hero-glass-card {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }
  .hero-luxury-split .hero-title {
    font-size: 2.75rem;
  }
}

/* ==========================================================================
   MAIN FEATURED POPULAR PRODUCT SHOWCASE SECTION
   ========================================================================== */

.main-featured-showcase-section {
  padding: 6rem 0;
  background-color: var(--color-warm-ivory);
  border-top: 1px solid var(--color-border-gold);
}

.featured-showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: #FFFFFF;
  padding: 3rem;
  border: 1px solid var(--color-border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.featured-showcase-image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.featured-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-showcase-image:hover img {
  transform: scale(1.04);
}

.showcase-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: var(--color-antique-gold);
  color: #FFFFFF;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
}

.showcase-vendor {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--color-antique-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.showcase-product-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.showcase-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.showcase-price {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.discount-tag {
  background-color: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.showcase-desc {
  font-size: 0.95rem;
  color: var(--color-charcoal-light);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.showcase-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-charcoal);
  margin-bottom: 2.25rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--color-antique-gold);
}

.showcase-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.showcase-buy-btn {
  flex: 1;
  padding: 1rem 1.75rem !important;
  font-size: 0.8125rem !important;
}

@media (max-width: 900px) {
  .featured-showcase-layout {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 2rem;
  }
  .showcase-product-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   INSTAGRAM REELS CAROUSEL SECTION (SHOP THE LOOK)
   ========================================================================== */
.kiya-reels-section {
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, var(--color-warm-ivory) 0%, #F5F1E8 100%);
  border-top: 1px solid var(--color-border-gold);
  position: relative;
  overflow: hidden;
}

.reels-header {
  text-align: center;
  margin-bottom: 3rem;
}

.header-tag-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.insta-handle-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-antique-gold);
  background: rgba(184, 138, 59, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  border: 1px solid var(--color-border-gold);
}

.live-reel-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #e74c3c;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
  animation: pulse-ring 1.6s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-ring {
  to {
    box-shadow: 0 0 0 8px rgba(231, 76, 60, 0);
  }
}

.reels-header .subtitle {
  font-size: 0.95rem;
  color: var(--color-charcoal-light);
  max-width: 600px;
  margin: 0.5rem auto 1.25rem;
}

/* Reels Carousel Container & Track */
.reels-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 -0.5rem;
}

.reels-carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem 2rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
  scroll-snap-type: x mandatory;
}

.reels-carousel-track::-webkit-scrollbar {
  display: none;
}

/* Reel Card 9:16 Ratio Aspect */
.reel-card {
  flex: 0 0 300px;
  max-width: 300px;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  background-color: #121212;
}

.reel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.reel-media-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0.88) 100%
  );
  pointer-events: none;
}

/* Top Bar inside Reel */
.reel-top-bar {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.reel-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: var(--color-gold-light);
  padding: 0.3rem 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.reel-audio-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.reel-audio-btn:hover {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.8);
}

/* Side Action Buttons */
.reel-side-actions {
  position: absolute;
  right: 0.75rem;
  bottom: 8.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  z-index: 10;
}

.reel-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.reel-action-btn:hover {
  transform: scale(1.15);
}

.reel-action-btn.is-liked .heart-icon {
  fill: #e74c3c;
  stroke: #e74c3c;
  animation: heart-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes heart-pop {
  0% { transform: scale(0.8); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Bottom Reel Content */
.reel-bottom-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 10;
  color: #FFFFFF;
}

.reel-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.author-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-antique-gold);
}

.author-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.verified-check {
  font-size: 0.65rem;
  background-color: #3897f0;
  color: #FFFFFF;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reel-caption {
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reel-audio-track {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

/* Shoppable Product Pill Attached to Reel */
.reel-product-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  color: var(--color-charcoal);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease, background 0.2s ease;
}

.reel-product-pill:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
}

.pill-thumb {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background-color: var(--color-soft-cream);
}

.pill-details {
  flex: 1;
  min-width: 0;
}

.pill-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-charcoal);
}

.pill-price {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-antique-gold);
}

.pill-old-price {
  color: rgba(36, 33, 29, 0.4);
  font-size: 0.65rem;
  margin-left: 0.2rem;
}

.pill-buy-btn {
  background-color: var(--color-charcoal);
  color: var(--color-warm-ivory);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.pill-buy-btn:hover {
  background-color: var(--color-antique-gold);
  color: #FFFFFF;
}

/* Carousel Navigation Arrows */
.reels-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--color-border-gold);
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-fast);
}

.reels-nav-btn:hover {
  background: var(--color-charcoal);
  color: var(--color-warm-ivory);
  border-color: var(--color-charcoal);
}

.reels-nav-btn.nav-prev {
  left: 0.5rem;
}

.reels-nav-btn.nav-next {
  right: 0.5rem;
}

.reels-footer-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-instagram-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  background-color: #FFFFFF;
  border: 1.5px solid var(--color-border-gold);
  color: var(--color-charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.btn-instagram-follow:hover {
  background-color: var(--color-charcoal);
  color: var(--color-warm-ivory);
  border-color: var(--color-charcoal);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .reels-carousel-track {
    gap: 1rem;
    padding: 0.5rem 1rem 1.5rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1rem;
  }

  .reel-card {
    flex: 0 0 calc(100% - 32px);
    max-width: 100%;
    height: 480px;
    scroll-snap-align: center;
    margin: 0 auto;
  }

  .reels-nav-btn {
    width: 36px;
    height: 36px;
    top: 50%;
    z-index: 10;
  }

  .reels-nav-btn.nav-prev {
    left: 6px;
  }

  .reels-nav-btn.nav-next {
    right: 6px;
  }
}

@media (max-width: 480px) {
  .reel-card {
    flex: 0 0 calc(100% - 24px);
    height: 440px;
    scroll-snap-align: center;
  }
}

/* ==========================================================================
   UNIQUE LUXURY FOOTER SECTION (KIYA ROYAL DESIGN)
   ========================================================================== */
.Kiya-unique-footer {
  background: linear-gradient(180deg, #171513 0%, #0D0C0B 100%);
  color: rgba(250, 248, 242, 0.85);
  padding: 4.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184, 138, 59, 0.4);
}

.footer-glow-backdrop {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 300px;
  background: radial-gradient(circle, rgba(184, 138, 59, 0.12) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

/* Top Card: Newsletter & Trust Assurance Strip */
.footer-top-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(184, 138, 59, 0.2);
  backdrop-filter: blur(12px);
  padding: 2.25rem 3rem;
  border-radius: 12px;
  margin-bottom: 4rem;
  position: relative;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.footer-newsletter-box {
  flex: 1 1 380px;
  max-width: 520px;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #FFFFFF;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}

.newsletter-desc {
  font-size: 0.82rem;
  color: rgba(250, 248, 242, 0.6);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.newsletter-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
  border-color: var(--color-antique-gold);
  box-shadow: 0 0 12px rgba(184, 138, 59, 0.2);
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: #FFFFFF;
  background: transparent;
  border: none;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-submit-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.35rem;
  background: var(--color-antique-gold);
  color: #110F0D;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-submit-btn:hover {
  background-color: #E2C078;
  color: #000000;
}

/* Trust Strip */
.footer-trust-strip {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(184, 138, 59, 0.3);
  background: rgba(184, 138, 59, 0.08);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.trust-desc {
  font-size: 0.72rem;
  color: rgba(250, 248, 242, 0.55);
}

/* Footer Main Grid */
.Kiya-unique-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-logo-link {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #FFFFFF;
  letter-spacing: 0.12em;
  line-height: 1;
}

.footer-logo-subtext {
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  color: var(--color-antique-gold);
  font-weight: 600;
  margin-top: 0.2rem;
}

.footer-brand-desc {
  font-size: 0.84rem;
  color: rgba(250, 248, 242, 0.65);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(250, 248, 242, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  background-color: var(--color-antique-gold);
  color: #110F0D;
  border-color: var(--color-antique-gold);
  transform: translateY(-2px);
}

.social-wa:hover {
  background-color: #25D366 !important;
  color: #FFFFFF !important;
  border-color: #25D366 !important;
}

/* Footer Image Logo */
.footer-logo-img {
  max-height: 75px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo-img:hover {
  opacity: 0.92;
  transform: scale(1.02);
}

/* Footer 2 QR Codes Section */
.footer-qr-container {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.footer-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  text-decoration: none;
}

.footer-qr-card:hover {
  border-color: var(--color-antique-gold, #C9A961);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 12px rgba(212, 175, 55, 0.2);
}

.qr-img-wrapper {
  width: 95px;
  height: 95px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.qr-img-wrapper img,
.qr-img-wrapper svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.qr-label {
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #FAF8F2;
  letter-spacing: 0.04em;
  text-align: center;
  max-width: 95px;
  line-height: 1.2;
}

.Kiya-unique-footer .footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #FFFFFF;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  position: relative;
}

.Kiya-unique-footer .footer-col-title::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--color-antique-gold);
  margin-top: 0.4rem;
  transition: width 0.3s ease;
}

.Kiya-unique-footer .footer-col:hover .footer-col-title::after {
  width: 36px;
}

.Kiya-unique-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.Kiya-unique-footer .footer-links a {
  font-size: 0.84rem;
  color: rgba(250, 248, 242, 0.65);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.Kiya-unique-footer .footer-links a:hover {
  color: var(--color-gold-light);
  transform: translateX(4px);
}

/* Contact Pills */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-pill:hover {
  border-color: rgba(184, 138, 59, 0.4);
  background: rgba(184, 138, 59, 0.06);
  transform: translateY(-2px);
}

.pill-icon {
  color: var(--color-antique-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pill-text {
  display: flex;
  flex-direction: column;
}

.pill-label {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-antique-gold);
  font-weight: 600;
}

.pill-val {
  font-size: 0.82rem;
  color: #FFFFFF;
  font-weight: 500;
}

.contact-support-hours {
  font-size: 0.75rem;
  color: rgba(250, 248, 242, 0.45);
  margin-top: 0.25rem;
}

/* Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(250, 248, 242, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

.payment-badges-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pay-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(250, 248, 242, 0.75);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
  .footer-top-card {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    padding: 2rem;
  }
  .footer-trust-strip {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-top: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .Kiya-unique-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .footer-trust-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .Kiya-unique-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   PRODUCT PAGE REDESIGN & PINCODE CHECKER STYLES
   ========================================================================== */
.breadcrumb-bar {
  padding: 1.5rem 0 0;
  font-size: 0.8rem;
  color: rgba(36, 33, 29, 0.6);
}

.breadcrumb-bar a {
  color: var(--color-charcoal);
  text-decoration: underline;
}

.gallery-badge-hallmark {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-antique-gold);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.4rem 0.85rem;
  z-index: 10;
}

.product-gallery-main {
  position: relative;
}

.product-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
}

.stars {
  color: #f39c12;
}

.rating-val {
  font-weight: 700;
  color: var(--color-charcoal);
}

.rating-count {
  color: rgba(36, 33, 29, 0.5);
  font-size: 0.75rem;
}

.tax-shipping-note {
  font-size: 0.78rem;
  color: rgba(36, 33, 29, 0.6);
  margin-bottom: 0.75rem;
}

.stock-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #27ae60;
  background: rgba(39, 174, 96, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #27ae60;
}

.variant-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.size-guide-link {
  font-size: 0.75rem;
  color: var(--color-antique-gold);
  text-decoration: underline;
  cursor: pointer;
}

.pincode-checker-box {
  margin: 1.75rem 0;
  padding: 1.25rem;
  background: var(--color-soft-cream);
  border: 1px dashed var(--color-border-gold);
  border-radius: 6px;
}

.pincode-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-charcoal);
  margin-bottom: 0.6rem;
}

.pincode-input-row {
  display: flex;
  gap: 0.5rem;
}

.pincode-input {
  flex: 1;
  padding: 0.6rem 0.85rem;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  border-radius: 3px;
}

.pincode-btn {
  padding: 0.6rem 1.25rem;
  background: var(--color-charcoal);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 3px;
}

.pincode-result {
  margin-top: 0.6rem;
  font-size: 0.78rem;
}

.product-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--color-charcoal);
  background: rgba(255, 255, 255, 0.6);
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */
.about-hero-banner {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(180deg, var(--color-soft-cream) 0%, var(--color-warm-ivory) 100%);
  border-bottom: 1px solid var(--color-border-gold);
}

.subtitle-gold {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-antique-gold);
  display: block;
  margin-bottom: 0.75rem;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #FFFFFF !important;
}

.about-hero-subtitle,
.about-hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95) !important;
  max-width: 750px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.about-breadcrumb,
.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.9) !important;
}

.craftsmanship-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.craft-timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.craft-step-card {
  padding: 2rem 1.5rem;
  background: var(--color-warm-ivory);
  border: 1px solid var(--color-border-gold);
  border-radius: 8px;
  position: relative;
  transition: transform 0.3s ease;
}

.craft-step-card:hover {
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-antique-gold);
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--color-charcoal-light);
  line-height: 1.6;
}

/* ==========================================================================
   CONTACT US PAGE & GOOGLE MAP STYLES
   ========================================================================== */
.contact-hero-banner {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(180deg, var(--color-soft-cream) 0%, var(--color-warm-ivory) 100%);
  border-bottom: 1px solid var(--color-border-gold);
}

.contact-hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.contact-hero-lead {
  font-size: 1.05rem;
  color: var(--color-charcoal-light);
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

.contact-cards-section {
  padding: 4rem 0 2rem;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 991px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card-box {
  background: #FFFFFF;
  border: 1px solid var(--color-border-gold);
  padding: 2rem 1.5rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card-box:hover {
  transform: translateY(-4px);
  border-color: var(--color-antique-gold);
}

.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.contact-card-desc {
  font-size: 0.82rem;
  color: var(--color-charcoal-light);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.contact-card-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-top: auto;
  margin-bottom: 0.5rem;
}

.card-btn-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-antique-gold);
}

.contact-form-map-section {
  padding: 3rem 0 6rem;
}

.contact-form-map-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-form-wrapper {
  background: #FFFFFF;
  padding: 3rem;
  border: 1px solid var(--color-border-gold);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.form-header {
  margin-bottom: 2rem;
}

.form-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-antique-gold);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin-top: 0.25rem;
}

.form-desc {
  font-size: 0.85rem;
  color: var(--color-charcoal-light);
}

.luxury-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-charcoal);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--color-warm-ivory);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--color-charcoal);
  transition: border-color 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-antique-gold);
  background: #FFFFFF;
}

.form-submit-btn {
  padding: 1.1rem 2rem !important;
  font-size: 0.8125rem !important;
  margin-top: 0.5rem;
}

.contact-map-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--color-border-gold);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.map-card-header {
  margin-bottom: 1.25rem;
}

.map-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-antique-gold);
}

.map-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin: 0.2rem 0;
}

.map-address {
  font-size: 0.82rem;
  color: var(--color-charcoal-light);
}

@media (max-width: 900px) {
  .contact-form-map-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 1.75rem;
  }
}

/* ==========================================================================
   PRODUCTS CATALOG FILTER & SORTING BAR
   ========================================================================== */
.collection-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border-gold);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.filter-pills-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-pill-btn {
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-border);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-charcoal);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-pill-btn:hover, .filter-pill-btn.is-active {
  background-color: var(--color-charcoal);
  color: var(--color-warm-ivory);
  border-color: var(--color-charcoal);
}

.collection-sorting {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sort-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-charcoal);
}

.sort-dropdown {
  padding: 0.55rem 1rem;
  background: #FFFFFF;
  border: 1px solid var(--color-border-gold);
  border-radius: 4px;
  font-size: 0.8125rem;
  color: var(--color-charcoal);
  cursor: pointer;
}

/* ==========================================================================
   WISHLIST PAGE & BADGES STYLING
   ========================================================================== */
.wishlist-hero-banner {
  background: var(--color-bg-alt, #FAF7F2);
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid var(--color-border-gold, #E2D4B7);
  margin-bottom: 3rem;
}

.wishlist-subtitle {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-antique-gold, #AA7C11);
  margin-bottom: 0.5rem;
}

.wishlist-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--color-charcoal, #1A1A1A);
  margin-bottom: 0.75rem;
}

.wishlist-lead {
  font-size: 1.05rem;
  color: var(--color-charcoal-light, #4A5568);
  max-width: 620px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.wishlist-meta-info {
  display: flex;
  justify-content: center;
}

.wishlist-count-pill {
  padding: 0.4rem 1.25rem;
  background: #FFFFFF;
  border: 1px solid var(--color-antique-gold, #AA7C11);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-antique-gold, #AA7C11);
  box-shadow: 0 4px 12px rgba(170, 124, 17, 0.1);
}

/* Header Wishlist Badge */
.header-icon-link {
  position: relative;
}

.wishlist-count-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  width: 18px;
  height: 18px;
  background-color: var(--color-antique-gold, #D4AF37);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.wishlist-count-badge.has-items {
  transform: scale(1.1);
  background-color: #9B2C2C;
}

/* Wishlist Empty State */
.wishlist-empty-card {
  max-width: 580px;
  margin: 2rem auto 4rem;
  padding: 3.5rem 2rem;
  background: #FFFFFF;
  border: 1px solid var(--color-border-gold, #E2D4B7);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.wishlist-empty-card.hidden {
  display: none !important;
}

.empty-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-antique-gold, #D4AF37);
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 2.2rem;
  color: var(--color-charcoal, #1A1A1A);
  margin-bottom: 0.75rem;
}

.empty-text {
  font-size: 0.95rem;
  color: var(--color-charcoal-light, #4A5568);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Wishlist Card Actions */
.wishlist-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  width: 100%;
}

.wishlist-card-actions .showcase-buy-btn {
  flex: 1;
  font-size: 0.75rem;
  padding: 0.75rem 0.5rem;
}

.wishlist-remove-btn {
  padding: 0.75rem 0.85rem;
  font-size: 0.72rem;
  background: #FFF5F5;
  border: 1px solid #FEB2B2;
  color: #C53030;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.wishlist-remove-btn:hover {
  background: #C53030;
  color: #FFFFFF;
  border-color: #C53030;
}

/* ==========================================================================
   LUXURY EDITORIAL PRODUCT DETAIL PAGE STYLES
   ========================================================================== */
.product-detail-section {
  padding: 3rem 0 5rem;
  background-color: var(--color-warm-ivory);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 58% 38%;
  gap: 4%;
  align-items: start;
}

/* LEFT COLUMN: HERO IMAGE GALLERY (60% AREA) */
.product-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: #F4EFE6;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  cursor: zoom-in;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.product-gallery-main:hover img {
  transform: scale(1.06);
}

/* Overlay elements on image */
.gallery-badge-hallmark {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.4rem 0.85rem;
  background: rgba(250, 248, 242, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border-gold);
  border-radius: 30px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-antique-gold);
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.gallery-wishlist-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  background: rgba(250, 248, 242, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-charcoal);
  cursor: pointer;
  z-index: 2;
  transition: var(--transition-fast);
}

.gallery-wishlist-btn:hover, .gallery-wishlist-btn.is-active {
  background: var(--color-charcoal);
  color: var(--color-antique-gold);
  border-color: var(--color-charcoal);
  transform: scale(1.08);
}

.gallery-zoom-hint {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  padding: 0.45rem 0.9rem;
  background: rgba(23, 21, 19, 0.85);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.product-gallery-main:hover .gallery-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

/* THUMBNAIL GALLERY */
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.85rem;
}

.thumb-item {
  position: relative;
  aspect-ratio: 4 / 5;
  background-color: #F4EFE6;
  border: 1px solid transparent;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-fast);
  opacity: 0.7;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-item:hover, .thumb-item.is-active {
  opacity: 1;
  border-color: var(--color-antique-gold);
  box-shadow: 0 4px 12px rgba(184, 138, 59, 0.2);
}

/* RIGHT COLUMN: PRODUCT INFORMATION (40% AREA) */
.product-info-sticky {
  display: flex;
  flex-direction: column;
}

.product-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.product-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-antique-gold);
  text-transform: uppercase;
}

.product-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
}

.product-reviews-badge .stars {
  color: var(--color-antique-gold);
  letter-spacing: 0.08em;
}

.product-reviews-badge .review-rating {
  font-weight: 600;
  color: var(--color-charcoal);
}

.product-reviews-badge .review-count {
  color: var(--color-charcoal-light);
  font-size: 0.72rem;
}

.product-info-title {
  font-family: var(--font-body);
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-charcoal);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.product-info-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.product-price {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.compare-at-price {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--color-muted, #77716A);
  text-decoration: line-through;
}

.discount-tag {
  padding: 0.25rem 0.65rem;
  background-color: rgba(184, 138, 59, 0.12);
  border: 1px solid rgba(184, 138, 59, 0.3);
  color: var(--color-antique-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 3px;
  text-transform: uppercase;
}

.tax-shipping-note {
  font-size: 0.78rem;
  color: #77716A;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #E5DED2;
}

.product-trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.72rem;
  color: #77716A;
  margin-top: 0.85rem;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}

.product-trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}


/* STOCK STATUS PILL */
.stock-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #27ae60;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

.stock-dot.sold-out {
  background-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.2);
}

.stock-dot.low-stock {
  background-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}

/* PRODUCT EDITORIAL MINI STORY */
.product-mini-story {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  border-left: 2px solid var(--color-antique-gold);
  margin-bottom: 1.75rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-charcoal-light);
  line-height: 1.5;
}

/* PRODUCT FEATURE HIGHLIGHTS (4 MINIMAL FEATURES) */
/* PRODUCT DESCRIPTION STYLING & BULLETS */
.product-description-text {
  max-width: 540px;
  font-size: 0.925rem;
  color: #3D3935;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.product-description-text p {
  margin-bottom: 0.75rem;
}

.product-description-text ul {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.product-description-text li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  color: #4B4640;
}

.product-description-text li::before {
  content: "•";
  color: #B88A3B;
  font-weight: bold;
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: -1px;
}

.product-service-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: #FAF8F5;
  border: 1px solid #ECE5DA;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.service-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.service-highlight-icon {
  width: 22px;
  height: 22px;
  color: var(--color-antique-gold);
  flex-shrink: 0;
}

.service-highlight-text {
  display: flex;
  flex-direction: column;
}

.highlight-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-charcoal);
  text-transform: uppercase;
}

.highlight-sub {
  font-size: 0.72rem;
  color: #77716A;
  margin-top: 1px;
}

/* VARIANT PICKER */
.product-variant-picker {
  margin-bottom: 1.75rem;
}

.variant-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.variant-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-charcoal);
  text-transform: uppercase;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.variant-option-btn {
  padding: 0.75rem 1.4rem;
  background: #FFFFFF;
  border: 1.5px solid #E5DED2;
  font-size: 0.825rem;
  font-weight: 600;
  color: #171513;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.variant-option-btn:hover {
  border-color: #B88A3B;
  color: #B88A3B;
}

.variant-option-btn.is-selected {
  border-color: #171513;
  background: #171513;
  color: #FAF8F2;
  box-shadow: 0 4px 12px rgba(23, 21, 19, 0.2);
}

/* PURCHASE BUTTONS & QTY */
.product-purchase-area {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.product-qty-add-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.85rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid #E5DED2;
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  height: 54px;
}

.qty-btn {
  width: 38px;
  height: 100%;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  transition: background 0.2s ease;
}

.qty-btn:hover {
  background: #FAF8F2;
  color: var(--color-antique-gold);
}

.qty-input {
  width: 44px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-charcoal);
  border: none;
  background: transparent;
}

.btn-add-to-bag {
  height: 54px;
  background-color: var(--color-charcoal);
  color: var(--color-warm-ivory);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(23, 21, 19, 0.15);
}

.btn-add-to-bag:hover {
  background-color: var(--color-antique-gold);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(184, 138, 59, 0.3);
  transform: translateY(-1px);
}

.btn-buy-now-express {
  height: 54px;
  width: 100%;
  background: linear-gradient(135deg, #B88A3B 0%, #D4AF37 100%);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(184, 138, 59, 0.25);
}

.btn-buy-now-express:hover {
  background: linear-gradient(135deg, #A0762E 0%, #B88A3B 100%);
  box-shadow: 0 8px 28px rgba(184, 138, 59, 0.4);
  transform: translateY(-1px);
}

/* LUXURY ACCORDIONS (MATCHING IMAGE 2) */
.product-accordions-wrapper {
  margin-top: 2rem;
  border-top: 1px solid rgba(184, 138, 59, 0.3);
  border-bottom: 1px solid rgba(184, 138, 59, 0.3);
}

.accordion-item {
  border-bottom: 1px solid rgba(184, 138, 59, 0.25);
}

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

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  user-select: none;
}

.accordion-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #171513;
}

.accordion-toggle-icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: #B88A3B;
  transition: transform 0.3s ease;
}

.accordion-item.is-open .accordion-toggle-icon {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding-bottom: 1.35rem;
  font-size: 0.875rem;
  color: #4B4640;
  line-height: 1.7;
}

.accordion-item.is-open .accordion-content {
  display: block;
}

.accordion-item.is-open .accordion-toggle-btn {
  transform: rotate(45deg);
  background: #171513;
  color: #FFFFFF;
  border-color: #171513;
}

.accordion-content {
  display: none !important;
  padding: 0 0.6rem 1.35rem 0.6rem;
  font-size: 0.85rem;
  color: #4B4640;
  line-height: 1.7;
}

.accordion-item.is-open .accordion-content {
  display: block !important;
}

.details-spec-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.6rem 1rem;
  font-size: 0.82rem;
}

.spec-label {
  font-weight: 600;
  color: var(--color-charcoal);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.spec-val {
  color: #555;
}

/* EDITORIAL STORY SECTION ("THE STORY BEHIND THE PIECE") */
.editorial-story-section {
  padding: 4.5rem 0;
  background-color: transparent;
  margin: 3rem 0 1rem;
}

.editorial-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.editorial-image-box {
  position: relative;
  max-height: 480px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.editorial-image-box img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
}

.editorial-content-box {
  max-width: 520px;
}

.editorial-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-antique-gold);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: block;
}

.editorial-heading {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-charcoal);
  margin-bottom: 1.25rem;
}

.editorial-desc {
  font-size: 0.925rem;
  color: var(--color-charcoal-light);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.editorial-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  background: var(--color-charcoal);
  color: var(--color-warm-ivory);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: 6px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(23, 21, 19, 0.15);
}

.editorial-cta-btn:hover {
  background: var(--color-antique-gold);
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(184, 138, 59, 0.3);
  transform: translateY(-2px);
}
}

.editorial-cta-btn:hover {
  background: var(--color-antique-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* RECOMMENDATIONS & COMPLETE THE LOOK */
.recommendations-section {
  padding: 4rem 0 6rem;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow-center {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-antique-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title-center {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--color-charcoal);
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* MOBILE STICKY PURCHASE BAR */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(250, 248, 242, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border-gold);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 999;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-bar.is-visible {
  transform: translateY(0);
}

.sticky-bar-info {
  display: flex;
  flex-direction: column;
}

.sticky-bar-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.sticky-bar-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.sticky-bar-btn {
  flex: 1;
  max-width: 190px;
  height: 44px;
  background-color: var(--color-charcoal);
  color: var(--color-warm-ivory);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LIGHTBOX MODAL */
.image-lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 14, 12, 0.94);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-lightbox-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .product-detail-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .product-gallery {
    position: relative;
    top: 0;
  }
  .editorial-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .recommendations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-detail-section {
    padding: 1.5rem 0 4rem;
  }
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-info-title {
    font-size: 2.1rem;
  }
  .product-price {
    font-size: 1.8rem;
  }
  .product-service-highlights {
    grid-template-columns: 1fr;
  }
  .recommendations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .editorial-heading {
    font-size: 2.2rem;
  }
  .editorial-story-section {
    padding: 3.5rem 0;
    margin: 2.5rem 0;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (GLOBAL)
   ========================================================================== */
.kiya-whatsapp-floating-wrap {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.kiya-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  position: relative;
  text-decoration: none;
  outline: none;
}

.kiya-whatsapp-btn:hover,
.kiya-whatsapp-btn:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6), 0 3px 8px rgba(0, 0, 0, 0.2);
}

.kiya-whatsapp-btn:focus-visible {
  outline: 3px solid #B58A3B;
  outline-offset: 3px;
}

.kiya-whatsapp-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background-color: #171513;
  color: #FFFFFF;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-family: inherit;
}

.kiya-whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #171513;
}

.kiya-whatsapp-btn:hover .kiya-whatsapp-tooltip,
.kiya-whatsapp-btn:focus-visible .kiya-whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.kiya-whatsapp-icon {
  width: 30px;
  height: 30px;
  fill: #FFFFFF;
}

@media (max-width: 768px) {
  .kiya-whatsapp-floating-wrap {
    right: 16px;
    bottom: 80px;
  }

  .kiya-whatsapp-btn {
    width: 52px;
    height: 52px;
  }

  .kiya-whatsapp-icon {
    width: 26px;
    height: 26px;
  }

  .kiya-whatsapp-tooltip {
    display: none !important;
  }
}
