/** Shopify CDN: Minification failed

Line 6447:4 Expected identifier but found whitespace
Line 6447:5 Unexpected "40px"

**/
/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Color Palette */
  --gold: #000;
  --gold-rgb: 197, 155, 39;
  --gold-hover: #000;
  --gold-light: #f5f5f5;

  --bg-dark: #0e0d0b;
  --bg-darker: #050403;
  --bg-card: rgba(22, 20, 18, 0.75);
  --bg-glass: rgba(14, 13, 11, 0.85);

  --text-light: #ffffff;
  --text-muted: #b5aba0;
  --text-dark: #1c1b18;

  --border-gold: rgba(197, 155, 39, 0.25);
  --border-gold-focus: rgba(197, 155, 39, 0.6);
  --border-muted: rgba(255, 255, 255, 0.08);

  /* Fonts */
  --font-serif: 'Orbitron', system-ui, sans-serif;
  --font-sans: 'Helvetica Neue', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bezier: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout Spacing */
  --container-max-width: 1500px;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #fff;
  color: var(--text-light);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  font-family: var(--font-serif);
}

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

button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition-smooth);
}

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

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-hover);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 800;
  /* Bolder to match the chunky logo style */
}


/* ==========================================================================
   BUTTONS & TYPOGRAPHY
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--bg-dark);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gold);
  z-index: -1;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  color: var(--bg-dark);
}

.btn-outline:hover::before {
  transform: translateY(0);
}

.btn-solid-gold {
  background-color: var(--gold);
  color: var(--text-dark);
  font-weight: 600;
  padding: 12px 30px;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
}

.btn-solid-gold:hover {
  background-color: var(--gold-hover);
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.4);
}

.btn-shop-now {
  font-family: var(--font-serif);
  color: var(--bg-darker);
  border: 1px solid var(--text-light);
  padding: 10px 24px;
  width: auto;
  min-width: 130px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.btn-shop-now:hover {
  background-color: var(--text-light);
  color: var(--bg-darker);
  border: 1px solid #000;
}

.btn-shop {
  font-family: var(--font-serif);
  color: var(--bg-darker);
  border: 1px solid var(--bg-darker);
  padding: 10px 24px;
  width: auto;
  min-width: 130px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.btn-shop:hover {
  background-color: var(--bg-dark);
  color: #fff;
}

.btn-common {
  background-color: #000;
  color: var(--text-light);
  font-family: var(--font-serif);
  font-weight: 700;
  border-top: 2px solid #555;
  border-left: 2px solid #555;
  border-bottom: 2px solid #111;
  border-right: 2px solid #111;
  box-shadow: 2px 2px 0px 0px rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
}

.btn-common:hover {
  background-color: #fff;
  color: #000;
  box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   ANNOUNCEMENT BAR & HEADER
   ========================================================================== */

body.template-index .announcement-bar {

  color: var(--text-light);
}


body.template-index .social-links-top a {
  color: #fff;

}

body.template-index .lang-sel:hover,
.curr-sel:hover {
  color: #fff;
}

body.template-index .announcement-text {
  color: #fff;
}


.announcement-text {
  font-family: 'Cinzel';
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  overflow: hidden;
  flex: 1;
  text-align: center;
  height: 20px;
}


body.template-index main {
  margin-top: -40px;
}

.announcement-bar {

  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #000;
  padding: 10px 0;
  height: 40px;
  max-width: 90%;
  position: relative;
  margin: auto;
  /* margin-bottom: -40px; */
  z-index: 110;
}

.announcement-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.social-links-top {
  display: flex;
  gap: 18px;
}

.social-links-top a {
  opacity: 0.85;
  display: flex;
  align-items: center;
}

.social-links-top a:hover {
  opacity: 1;
  color: var(--gold);
}

.announcement-text {
  font-family: 'Cinzel';
  font-size: 18px;
  font-weight: 700;
  color: #000;
  position: relative;
  overflow: hidden;
  flex: 1;
  text-align: center;
  height: 20px;
}

.announcement-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.announcement-slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  white-space: nowrap;
}

.announcement-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.currency-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 400;
  position: absolute;
  right: 0;
}

[dir="rtl"] .currency-selector {
  right: auto;
  left: 0;
  direction: ltr;
  /* Keeps EN/AED text LTR if that's what was requested */
}


.lang-sel:hover,
.curr-sel:hover {
  color: #000;
}

.flag-icon {
  margin-right: 2px;
}

/* Language Dropdown Custom Styles */
.lang-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.lang-sel-btn {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
}

.lang-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5px;
  background-color: #ffffff;
  border: 1px solid #dcdad5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 8px 0;
  min-width: 110px;
  z-index: 999;
  border-radius: 2px;
}

.lang-dropdown-option {
  color: #1c1b18 !important;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.72rem;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-transform: none;
  white-space: nowrap;
}

.lang-dropdown-option:hover {
  background-color: #f7f5f0;
  color: var(--gold, #b98a00) !important;
}

.lang-dropdown-option.active {
  font-weight: 600;
  color: var(--gold, #b98a00) !important;
}

/* Transparent Header Overlay */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 10px;
  position: relative;
  min-height: 110px;
  max-width: 90%;
  margin: auto;
}

/* Centered Logo wrapper */
.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  text-align: center;
}

.logo-emblem {
  width: auto;
  height: auto;
  max-height: 60px;
  max-width: 200px;
  margin-bottom: 6px;
  /* filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4)); */
}

.brand-main {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.brand-sub {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--text-muted);
  margin-top: 3px;
  text-indent: 0.5em;
}

/* Header Actions (Positioned on the Right) */
.header-actions {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-light);
}

.action-btn {
  position: relative;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.action-btn:hover {
  color: var(--gold-hover);
  transform: translateY(-1px);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  border: 1px solid #000;
  background: #000000;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

/* Menu Toggle Button (Mobile) - Absolute Left */
.menu-toggle-btn {
  display: none;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  align-items: center;
  justify-content: center;
}

/* Centered Navigation Menu Row */
.nav-bar {
  border-top: 1px solid rgba(197, 155, 39, 0.22);
  border-bottom: 1px solid rgba(197, 155, 39, 0.22);
  padding: 10px 0;
  margin-top: 10px;
  max-width: 90%;
}

.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 15px;
}

.nav-link {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #000;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.nav-link:hover,
.nav-link.active {
  color: #000;
}

/* ==========================================================================
   MEGA MENU DROPDOWN
   ========================================================================== */
.nav-item {
  position: static;
  list-style: none;
}

.has-mega-menu {
  position: static;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 2px solid var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.has-mega-menu:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu-inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 32px 40px 28px;
}

/* Each brand group row */
.mega-group {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 24px;
  padding: 8px 0;
}

.mega-divider {
  border: none;
  border-top: 1px solid #e8e0d6;
  margin: 16px 0;
}

/* Brand-name column */
.mega-col--brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega-brand-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #1a1814;
  margin-bottom: 6px;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}

.mega-brand-title:hover {
  color: var(--gold);
}

/* Regular columns */
.mega-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.mega-link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #5a5550;
  transition: color 0.2s ease;
  white-space: normal;
}

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

/* Brand-col links slightly bolder */
.mega-col--brand .mega-link {
  font-weight: 500;
  color: #3a3530;
}

.mega-col--brand .mega-link:hover {
  color: var(--gold);
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER
   ========================================================================== */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  border-right: 1px solid var(--border-gold);
  z-index: 1010;
  transform: translateX(-100%);
  transition: var(--transition-bezier);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-menu-drawer.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-menu-btn {
  color: #000000;
}

.close-menu-btn:hover {
  color: var(--gold);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Each list item */
.mobile-nav-item {
  border-bottom: 1px solid #e5e0d8;
}

/* Row that holds link + toggle button side by side */
.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #1a1814;
  display: block;
  padding: 16px 0;
  flex: 1;
  border-bottom: none;
  /* border handled by .mobile-nav-item */
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
}

/* + / − toggle button */
.mobile-submenu-toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1814;
}

.toggle-icon {
  font-size: 1.3rem;
  line-height: 1;
  display: block;
  transition: transform 0.25s ease;
  font-weight: 300;
}

/* When expanded show − and animate icon */
.mobile-nav-item.open .toggle-icon {
  content: '−';
}

/* Sub-link list */
.mobile-submenu {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  background: #f8f6f3;
}

.mobile-submenu:not([hidden]) {
  max-height: 600px;
  /* large enough for any submenu */
}

.mobile-sub-link {
  display: block;
  padding: 12px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #5a5550;
  border-bottom: 1px solid #edeae4;
  transition: color 0.2s ease;
}

.mobile-sub-link:hover {
  color: var(--gold);
}


.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1005;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   SEARCH POPOVER
   ========================================================================== */
.search-overlay-popover {
  border: none;
  background: #ffffff00;
  backdrop-filter: blur(15px);
  width: 100%;
  height: 150px;
  position: fixed;
  top: 0;
  left: 0;
  padding: 30px;
  z-index: 1020;
}

.search-overlay-popover:popover-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-popover-content {
  width: 100%;
  max-width: 600px;
  position: relative;
  display: flex;
  align-items: center;
}

.search-form {
  width: 100%;
  display: flex;
  border-bottom: 2px solid var(--gold);
  align-items: center;
  padding-bottom: 8px;
}

.search-form input {
  width: 100%;
  background: none;
  border: none;
  color: #000;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  outline: none;
  padding: 0 10px;
}

.search-form input::placeholder {
  color: #000;
  opacity: 1;
}

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

.search-form button {
  color: var(--gold);
}

.close-search-btn {
  position: absolute;
  right: -50px;
  color: var(--text-muted);
}

.close-search-btn:hover {
  color: var(--text-light);
}

body.product-page .announcement-text {
  color: #000000 !important;
}

header.main-header.solid-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

header.main-header.solid-header span.announcement-slide.active {
  color: #000000 !important;
}

header.main-header.solid-header .announcement-bar {
  color: #000000 !important;
}

.solid-header span.lang-sel {
  color: #000 !important;
}

.solid-header span.curr-sel {
  color: #000 !important;
}

.solid-header .action-btn {
  position: relative;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
}

.solid-header .announcement-text {
  color: #000 !important;
}


.solid-header .nav-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .15em;
  color: #000000e6;
  padding: 6px 12px;
  position: relative;
  text-shadow: none;
}

/* ==========================================================================
   HERO VIDEO SLIDER
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #000000;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

/* Video background styles */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(162, 90, 31, 0.25) 0%, rgba(14, 13, 11, 0.82) 80%, rgba(5, 5, 5, 0.98) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Slide Content positioning */
.slide-content {
  position: relative;
  z-index: 3;
  bottom: 8%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.98) translateY(20px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}

.slide.active .slide-content {
  opacity: 1;
}

/* Center bottle layer */
.hero-bottle-display {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  width: 100%;
  margin-top: 120px;
}

.hero-bottle-display img {
  width: 100%;
  height: auto;
  max-height: 62vh;
  object-fit: contain;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 35px rgba(var(--gold-rgb), 0.12));
  animation: floatBottle 6s ease-in-out infinite;
}

/* Static Slide 2 fallback structure styling */
#slide-2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  z-index: 1;
}

#slide-2::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 40%, #000000 100%);
  z-index: 2;
  opacity: 0.85;
}

#slide-2 .slide-content {
  flex-direction: column;
  text-align: center;
}

.slide-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--text-light);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.slide-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
  color: #fff;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background-color: transparent;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.slider-arrow svg {
  stroke-width: 1.2px;
}

.slider-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.15);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: var(--transition-smooth);
}

.dot.active {
  background-color: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--gold);
}

/* Micro-animations */
@keyframes floatBottle {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ==========================================================================
   PROMOTIONAL BANNERS
   ========================================================================== */
.banner-promo-section {
  padding-top: 60px;
  padding-bottom: 40px;
}

.banner-promo-card {
  position: relative;
  width: 100%;
  /* height: 350px; */
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.banner-promo-card img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  transition: transform 10s ease;
}

.banner-promo-card:hover img {
  transform: scale(1.05);
}

/* .banner-promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(14, 13, 11, 0.95) 20%, rgba(14, 13, 11, 0.4) 60%, transparent 100%);
  z-index: 2;
} */

.banner-promo-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
  /* max-width: 550px; */
}

.banner-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 10px;
}

.banner-subtitle {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.banner-promo-content .btn-shop-now {
  max-width: 180px;
}

/* Interstitial atmospheric banner */
.interstitial-banner-section {
  width: 100%;
  height: 700px;
  overflow: hidden;
  position: relative;
  margin: 60px 0;
}

.interstitial-banner-content {
  width: 100%;
  height: 100%;
}

.interstitial-banner-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.interstitial-banner-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--bg-darker) 0%, transparent 30%, transparent 70%, var(--bg-darker) 100%);
}

/* ==========================================================================
   PRODUCTS SECTION & CAROUSEL (Image Bleed Layouts)
   ========================================================================== */
/* .products-section {
  padding-top: 50px;
  padding-bottom: 50px;
} */

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 32px;
  color: #000;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}


.gold-diamond {
  color: var(--gold);
  margin: 0 4px;
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.gold-diamond img {
  height: 18px;
  width: auto;
  display: block;
}

/* Carousel wrapper for absolute arrow positioning */
.product-carousel-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 45px;
}

/* Flush Grid Separator design ( gap forms a thin gold line) */
.product-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 0.67px);
  gap: 1px;
  /* Grid gap shows as gold separator */
  width: 100%;
}

.product-slider-container,
.social-slider-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
}

.product-slider-container::-webkit-scrollbar,
.social-slider-container::-webkit-scrollbar {
  display: none;
}

/* Portrait card bleed image layout */
.product-card {
  position: relative;
  width: 100%;
  /* Taller card aspect ratio */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--bg-darker);
  scroll-snap-align: start;
  box-shadow: #00000029 0 1px 4px;
}

.product-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: top;
  background: #fff;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;

}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.product-card-content {
  position: relative;
  z-index: 3;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  width: 100%;
  text-align: center;
}

.product-title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-transform: uppercase;
}

.product-title a {
  color: inherit;
  text-decoration: none;
}

/* Grid arrow controllers centered on grid borders */
.product-grid-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background-color: rgba(14, 13, 11, 0.35);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.product-grid-arrow svg {
  stroke-width: 1.5px;
}

.product-grid-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(14, 13, 11, 0.65);
  box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.15);
}

.product-grid-arrow.prev {
  left: 20px;
}

.product-grid-arrow.next {
  right: 20px;
}

.section-footer {
  text-align: center;
}

/* ==========================================================================
   SOCIAL HUBS
   ========================================================================== */
.social-hubs-section {
  padding: 80px 0 0 0;
}

.social-hubs-section .container {
  max-width: 100% !important;
  padding: 0;
}

.justify-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

/* Carousel wrapper for social hubs slider */
.social-carousel-wrapper {
  position: relative;
  width: 100%;
}

.social-slider-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
}

.social-slider-container::-webkit-scrollbar {
  display: none;
}

.social-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 25%;
  /* 4 items visible — 25% of the scroll container */
  gap: 0;
  width: 100%;
  /* definite width so 25% resolves correctly */
}

.social-item {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-right: 1px solid var(--border-gold);
  scroll-snap-align: start;
  cursor: pointer;
  flex-shrink: 0;
}

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

.social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 13, 11, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: var(--gold);
  transition: var(--transition-smooth);
  z-index: 2;
}

.social-item:hover img {
  transform: scale(1.05);
}

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

/* Social grid navigation arrows */
.social-grid-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background-color: rgba(14, 13, 11, 0.5);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.social-grid-arrow svg {
  stroke-width: 1.5px;
}

.social-grid-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(14, 13, 11, 0.75);
  box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.2);
}

.social-grid-arrow.prev {
  left: 8px;
}

.social-grid-arrow.next {
  right: 8px;
}

/* ==========================================================================
   INLINE SOCIAL VIDEOS
   ========================================================================== */
.social-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.social-item.playing .social-video {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

/* Hide cover image and overlay when video is playing */
.social-item.playing img {
  opacity: 0;
  pointer-events: none;
}

.social-item.playing .social-overlay {
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   VALUE PROPOSITION BAR
   ========================================================================== */
/* ==========================================================================
   VALUE PROPOSITIONS
   ========================================================================== */
.value-props-section {
  background-color: #ffffff;
  padding: 40px 50px;
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.prop-item {

  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #000000;
  transition: var(--transition-smooth);
  justify-content: center;
}

.prop-item:hover {
  transform: translateY(-2px);
}

.prop-icon {
  color: #030303;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prop-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prop-text h3 {
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #000000;
  margin: 0;
}

.prop-text p {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.9);
  margin: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background-color: #fcf7f1;

  /* lighter beige */
  padding: 40px 60px;
  color: #1c1b18;
}

.main-footer .container {
  max-width: 90%;
  margin: auto;

}

.footer-features-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1d8cc;
  margin-bottom: 40px;
}

.footer-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: center;
  border-right: 1px solid #e1d8cc;
}

.footer-feature:last-child {
  border-right: none;
}

.feature-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1c1b18;
}

.feature-text p {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  line-height: 1.1;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 70px;
  width: auto;
  display: block;
}

.footer-logo .brand-main {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.footer-logo .brand-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.4em;
  margin-top: 2px;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.newsletter-form {
  display: flex;
  align-items: stretch;
  background-color: #ffffff;
  border: 1px solid #e1d8cc;
  border-radius: 4px;
  padding: 0;
  width: 100%;
  overflow: hidden;
}

.newsletter-form input {
  flex-grow: 1;
  background: none;
  border: none;
  padding: 12px 16px;
  color: #1c1b18;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #a3a3a3;
}

.newsletter-form .btn-subscribe {
  background-color: #bc8e11;
  /* Gold color matching image */
  color: #ffffff;
  border: none;
  padding: 0 20px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.newsletter-form .btn-subscribe:hover {
  background-color: #a0780c;
}

.newsletter-caption {
  font-size: 0.8rem;
  color: #4a4945;
  margin-top: 15px;
  font-weight: 500;
}

.form-success {
  position: absolute;
  color: #10b981 !important;
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-top: 12px;
  text-align: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: block;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2.5fr;
  gap: 30px;
  margin: 50px 0px;
  text-align: center
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul:not(.footer-acc-body) {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 1rem;
  color: #4a4945;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 3px;
}

/* Footer Accordion (mobile) */
.footer-acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -20px;
}

.footer-acc-toggle {
  display: none;
  /* hidden on desktop */
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-toggle-icon {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}

/* On desktop the UL is always visible */
.footer-acc-body,
.desktop-acc-body {
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  overflow: hidden;
  max-height: none;
  transition: max-height 0.35s ease;
}

.mobile-only-accordion,
.mobile-only-acc-body {
  display: contents !important;
}

.mobile-only-acc-header {
  display: none !important;
}

.get-in-touch-col .footer-desc {
  font-size: 1rem;
  font-weight: 600;
  color: #4a4945;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-contact {
  font-size: 1rem;
  color: #4a4945;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-contact a {
  font-size: 1rem;
  font-weight: 600;
  color: #4a4945;
  font-weight: 500;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.follow-us-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-social-row a {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-social-row a:hover {
  color: var(--gold-hover);
  transform: scale(1.15);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #e1d8cc;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.75rem;
  color: #4a4945;
  font-weight: 500;
}

.payment-gateways {
  display: flex;
  gap: 8px;
  align-items: center;
}

.payment-icon-svg {
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
}

.payment-icon-svg:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   CART DRAWER (Slide-out)
   ========================================================================== */
.cart-drawer-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.4s;
}

.cart-drawer-wrapper.open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}

.cart-drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.cart-drawer-wrapper.open .cart-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background-color: #fff;
  border-left: 1px solid var(--border-gold);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
  color: #000;
}

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

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin: 0;
}

.cart-drawer-close {
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.cart-drawer-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.cart-drawer-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty-message {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  color: var(--text-muted);
}

.cart-empty-message p {
  font-size: 0.9rem;
}

.close-cart-link {
  font-size: 0.8rem;
  padding: 10px 24px;
}

.cart-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

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

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.cart-item-qty {
  color: var(--text-muted);
}

.cart-item-remove {
  color: #ff5252;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 0.75rem;
  transition: var(--transition-smooth);
}

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

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #fff;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-subtotal-value {
  color: var(--gold);
}

.cart-shipping-notice {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.btn-checkout {
  width: 100%;
  background-color: var(--gold);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 600;
  padding: 14px;
  border-radius: 0;
  letter-spacing: 0.1em;
}

.btn-checkout:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

/* ==========================================================================
   TOAST SYSTEM
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background-color: var(--bg-glass);
  color: var(--text-light);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--gold);
  padding: 15px 25px;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  animation: slideInToast 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.fade-out {
  opacity: 0;
  transform: translateY(15px);
}

.toast-icon {
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.toast-message {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@keyframes slideInToast {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet & Mobile Screens */
@media (max-width: 991px) {
  .value-props-section {
    padding: 39px 10px;
  }

  .main-footer .container {
    max-width: 100%;
    margin: auto;

  }

  .main-footer {
    padding: 40px 20px;
  }

  .slider-arrow {
    display: none;
  }

  .header-container {
    max-width: 100%;
    background: #fff;
  }

  body.template-index main {
    margin-top: -56px;
  }

  .section-title {
    font-size: 1rem;
  }

  .close-search-btn {
    right: 0px;
  }

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

  .menu-toggle-btn {
    display: flex;
    /* Show hamburger button */
  }

  .header-container {
    min-height: 80px;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .brand-logo .brand-main {
    font-size: 1.5rem;
  }

  .brand-logo .brand-sub {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
  }

  .logo-emblem {
    width: 156px;
    height: 100%;
  }

  /* Product grids - 2 cards visible at a time on tablet */
  .product-grid {
    grid-auto-columns: calc(50% - 0.5px);
  }

  /* Social Hubs - 2 visible on tablet */
  .social-grid {
    grid-auto-columns: 50%;
  }

  /* Value Props */
  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .banner-promo-card img {
    height: 100%;
    min-height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {

  .announcement-slide {
    font-size: 8px;
    height: 100%;
  }

}


/* Mobile Screens */
@media (max-width: 600px) {
  .announcement-bar {
    height: auto;
    padding: 8px 0;
    max-width: 100%;
  }

  .announcement-bar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "text text"
      "socials currency";
    gap: 6px;
    align-items: center;
    padding: 0 15px;
  }

  .announcement-text {
    grid-area: text;
    width: 100%;
    font-size: 11px;
    height: 16px;
  }

  .announcement-slide {
    font-size: 11px;
    height: 100%;
  }

  .social-links-top {
    grid-area: socials;
    justify-self: start;
    gap: 12px;
  }

  .social-links-top svg {
    width: 14px;
    height: 14px;
  }

  .currency-selector {
    grid-area: currency;
    justify-self: end;
    position: static;
    gap: 10px;
    font-size: 0.65rem;
  }

  /* Responsive Mobile Header overrides */
  .header-container {
    min-height: 70px;
    padding: 5px 15px;
  }

  .logo-emblem {
    width: 100%;
    max-width: 170px;
    height: auto;
  }

  .menu-toggle-btn {
    left: 15px;
  }

  .header-actions {
    right: 15px;
    gap: 12px;
  }

  /* Hero Slider styling for mobile */
  .hero-slider-section {
    aspect-ratio: 9/16;
    height: 70vh;
  }

  .slide-title {
    font-size: 2rem !important;
  }

  .slide-subtitle {
    font-size: 0.85rem !important;
  }

  .interstitial-banner-section {
    height: 400px;
    margin: 40px 0;
  }

  .banner-promo-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Product grids - 1.2 visible per row on mobile (peek effect) */
  .product-grid {
    grid-auto-columns: calc(85% - 5px);
  }



  /* Social Hubs - 1.2 visible on mobile (peek effect) */
  .social-grid {
    grid-auto-columns: 83.333%;
    /* shows 1 item + peek of next */
  }

  /* Value propositions stack */
  .value-props-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .prop-item {
    padding: 15px 0px;
  }

  /* Footer layout stack */

  a.back-to-top svg {
    stroke: black !important;
  }

  .footer-top-row {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .logo-social-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-logo {
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-newsletter {
    align-items: center;
    margin-top: 30px;
    text-align: center;
  }

  .newsletter-caption {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .footer-col h3 {
    margin-bottom: 0;
    padding: 12px 0;
  }

  .footer-acc-header {
    cursor: pointer;
    justify-content: center;
  }

  .footer-acc-toggle {
    display: flex;
    position: absolute;
    right: 0;
  }


  .mobile-only-accordion {
    display: block !important;
    border-bottom: 1px solid #e5e0d8;
    padding: 4px 0;
    position: relative;
    width: 100%;
  }

  .mobile-only-acc-header {
    display: flex !important;
  }

  .desktop-only-acc-header {
    display: none !important;
  }

  .mobile-only-acc-body {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    gap: 0;
    transition: max-height 0.35s ease;
  }

  .footer-accordion.open .mobile-only-acc-body {
    max-height: 800px;
    padding-bottom: 12px;
  }

  .desktop-acc-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    gap: 0;
  }

  .desktop-acc-body li {
    padding: 8px 0;
    border-bottom: 1px solid #f0ece6;
    width: 100%;
    list-style: none;
  }

  .newsletter-form .btn-subscribe {
    padding: 0 10px;
    font-size: 0.75rem;
  }

  /* .footer-contact {
    align-items: center;
  } */

  .footer-social-row {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
  }

  .payment-gateways {
    justify-content: center;
  }

  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }
}

/* ==========================================================================
   MOBILE STICKY BOTTOM TOOLBAR  (hidden on desktop)
   ========================================================================== */
.mobile-sticky-toolbar {
  display: none;
}

.whatsapp-fab,
.scroll-to-top-btn {
  display: none;
}

@media (max-width: 768px) {

  .footer-acc-header {
    margin: 20px 0px;
    ;
  }

  /* Add bottom padding to page so toolbar doesn't cover content */
  body {
    padding-bottom: 68px;
  }

  /* ---- Toolbar ---- */
  .mobile-sticky-toolbar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 68px;
    background: #ffffff;
    border-top: 1px solid #e8e4df;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
    z-index: 999;
    align-items: stretch;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mob-tool-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    font-weight: 500;
    color: #3a3530;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    text-decoration: none;
    padding: 6px 0 4px;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mob-tool-item:hover,
  .mob-tool-item:active {
    color: var(--gold);
  }

  /* Badge wrapper keeps icon + badge together */
  .mob-tool-badge-wrap {
    position: relative;
    display: inline-flex;
  }

  .mob-tool-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #1a1814;
    color: #ffffff;
    font-size: 0.55rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
  }

  /* ---- WhatsApp FAB ---- */
  .whatsapp-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 16px;
    bottom: 78px;
    /* above toolbar */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    z-index: 998;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .whatsapp-fab:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
  }

  /* ---- Scroll to Top FAB ---- */
  .scroll-to-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 16px;
    bottom: 78px;
    /* above toolbar */
    width: 42px;
    height: 42px;
    border-radius: 4px;
    background: #ffffff;
    border: 1px solid #ddd9d4;
    color: #3a3530;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    z-index: 998;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.2s ease;
  }

  .scroll-to-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .scroll-to-top-btn:hover {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
  }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE SPECIFIC STYLES
   ========================================================================== */
body.product-page {
  background-color: #ffffff !important;
  color: #1c1b18 !important;
}

body.product-page .announcement-bar {
  background-color: #ffffff;
  color: #1c1b18;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.product-page .social-links-top a,
body.product-page .currency-selector {
  color: #1c1b18;
}

body.product-page .announcement-text {
  color: #1c1b18;
}

body.product-page .main-header {
  position: relative;
  top: 0;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.product-page .nav-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 5px;
}

body.product-page .nav-link {
  color: #1c1b18;
  text-shadow: none;
}

body.product-page .nav-link:hover,
body.product-page .nav-link.active {
  color: var(--gold);
}

body.product-page .header-actions {
  color: #1c1b18;
}

body.product-page .action-btn {
  color: #1c1b18;
  filter: none;
}

body.product-page .cart-badge {
  background-color: var(--gold);
  color: #ffffff;
}

/* Breadcrumbs Banner */
.breadcrumbs-banner {
  background-color: #f6f6f6;
  padding: 14px 0;
  border-bottom: 1px solid #eaeaea;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #000;
}

.breadcrumbs-banner .container {
  max-width: var(--container-max-width);
  padding: 0 40px;
  margin: 0 auto;
}

.breadcrumbs a {
  color: #888888;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs span {
  color: #1c1b18;
  font-weight: 600;
}

/* Product detail layout */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  padding: 40px;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.product-detail-gallery {
  width: 100%;
}

.gallery-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  background-color: #fcfbf9;
  border: 1px solid #eaeaea;
}

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

.gallery-cell:hover img {
  transform: scale(1.05);
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #1c1b18;
}

.product-info-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #1c1b18;
  line-height: 1.25;
  margin-top: 5px;
}

.product-info-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.price-val {
  font-family: 'Orbitron';
  font-size: 1.85rem;
  font-weight: 700;
  color: #1c1b18;
}

.price-old {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: #b0a89d;
}

.price-savings {
  font-size: 0.78rem;
  color: #c59b27;
  font-weight: 600;
  background-color: #fdfaf2;
  border: 1px dashed var(--gold);
  padding: 4px 10px;
}

.product-info-stock {
  margin-top: -5px;
}

.stock-badge {
  display: inline-block;
  background-color: #f6eedb;
  color: #8b6e2e;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-info-description {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #5a5550;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 25px;
  margin-top: -5px;
}

.btn-read-more {
  background: none;
  border: none;
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 0.88rem;
  font-family: inherit;
}

.btn-read-more:hover {
  text-decoration: underline;
}

/* Variant Selection */
.product-info-variants {
  font-family: 'Orbitron';
  font-weight: 600;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 25px;
}

.variants-row {
  display: flex;
  gap: 16px;
}

.variant-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #dcdad5;
  background-color: #ffffff;
  padding: 12px 20px;
  min-width: 90px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

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

.variant-btn.active {
  border-color: var(--gold);
}

.variant-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--gold);
}

.variant-thumb {
  width: 45px;
  height: 45px;
  margin-bottom: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.variant-txt {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1c1b18;
}

/* Purchase row */
.product-purchase-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 5px;
}

.action-wishlist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #dcdad5;
  background-color: #ffffff;
  color: #1c1b18;
  cursor: pointer;
  transition: all 0.25s ease;
}

.action-wishlist-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.action-wishlist-btn.active {
  background-color: #fff8f8;
  border-color: #f7a8a8;
  color: #d93838;
}

.product-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #dcdad5;
  height: 48px;
  background-color: #ffffff;
}

.qty-control {
  background: none;
  border: none;
  width: 36px;
  height: 100%;
  font-size: 1.25rem;
  color: #5a5550;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.qty-control:hover {
  background-color: #fcfbf9;
}

.qty-val {
  width: 40px;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1c1b18;
  background-color: transparent;
  outline: none;
}

.qty-val::-webkit-outer-spin-button,
.qty-val::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-product-add-to-cart {
  flex: 1;
  height: 48px;
  background-color: var(--gold);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
  border: none;
}

.btn-product-add-to-cart:hover {
  background-color: var(--gold-hover);
  box-shadow: 0 4px 15px rgba(var(--gold-rgb), 0.2);
}

/* Badges & Promo */
.product-payment-gateways {
  display: flex;
  gap: 8px;
  margin-top: 5px;
}

.payment-icon-svg {
  border: 1px solid #eaeaea;
  border-radius: 3px;
}

.product-promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-top: 10px;
  aspect-ratio: 16 / 5.2;
  background-color: #000;
}

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

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

.promo-card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 35px;
  color: #ffffff;
  pointer-events: none;
  z-index: 2;
}

.promo-card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: 0.15em;
  margin-bottom: 2px;
  color: #ffffff;
}

.promo-card-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

/* Gallery wrapper to position absolute arrows on mobile */
.gallery-wrapper-relative {
  position: relative;
  width: 100%;
}

.gallery-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #1c1b18;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease, opacity 0.3s ease, transform 0.2s ease;
  border: none;
}

.gallery-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.gallery-arrow.prev {
  left: 16px;
}

.gallery-arrow.next {
  right: 16px;
}

/* Gallery Slider Dots */
.gallery-slider-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #dddddd;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.gallery-dot.active {
  background-color: var(--gold);
  transform: scale(1.2);
}

/* Tabs & Specifications Details */
.product-specs-tabs {
  max-width: var(--container-max-width);
  margin: 50px auto 90px;
  padding: 0 40px;
}

.specs-tab-headers {
  display: flex;
  border-bottom: 1px solid #e0dad3;
  gap: 36px;
}

.tab-header-btn {
  background: none;
  border: none;
  padding: 16px 0;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: #8c857e;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
  letter-spacing: 0.04em;
}

.tab-header-btn:hover {
  color: #1c1b18;
}

.tab-header-btn.active {
  color: #1c1b18;
  font-weight: 700;
}

.tab-header-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1c1b18;
}

.specs-tab-contents {
  padding: 35px 0 0;
  color: #333333;
}

.specs-panel {
  animation: tabFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.specs-panel[hidden] {
  display: none;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.specs-grid-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 50px;
}

.specs-grid-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.6;
  border-bottom: 1px solid #f6f3ee;
  padding-bottom: 12px;
}

.check-icon {
  color: #2e7d32;
  margin-right: 14px;
  font-weight: bold;
  font-size: 0.95rem;
}

.spec-label {
  font-weight: 700;
  color: #1c1b18;
  margin-right: 8px;
  text-transform: uppercase;
  min-width: 180px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.spec-value {
  color: #5a5550;
}

.nested-notes-item {
  grid-column: span 2;
  flex-direction: column;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.nested-notes-item .spec-label {
  margin-bottom: 12px;
}

.notes-details {
  list-style: none;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.notes-details li {
  border-bottom: 1px solid #f6f3ee !important;
  padding-bottom: 8px !important;
  font-size: 0.88rem;
}

.notes-details li:last-child {
  border-bottom: none !important;
}

.notes-details li strong {
  color: #1c1b18;
  margin-right: 6px;
  display: inline-block;
  min-width: 120px;
}

.fragrance-notes-desc,
.reviews-wrapper,
.faqs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-item {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 18px;
}

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

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 0.82rem;
}

.stars {
  color: #e5b228;
  font-size: 1rem;
}

.review-meta strong {
  color: #1c1b18;
}

.review-meta .date {
  color: #8c857e;
}

.review-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #5a5550;
}

.faq-item {
  border-bottom: 1px solid #f6f3ee;
  padding-bottom: 16px;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h4 {
  font-size: 0.92rem;
  color: #1c1b18;
  margin-bottom: 6px;
  font-weight: 600;
}

.faq-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #5a5550;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 20px;
  }

  .gallery-grid-2x2 {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .breadcrumbs-banner .container {
    padding: 0 20px;
  }

  .product-info-title {
    font-size: 1.65rem;
  }

  .product-specs-tabs {
    padding: 0 20px;
    margin-bottom: 50px;
  }

  .specs-tab-headers {
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  .specs-grid-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nested-notes-item {
    grid-column: span 1;
  }

  .gallery-grid-2x2 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
  }

  .gallery-grid-2x2::-webkit-scrollbar {
    display: none;
  }

  .gallery-cell {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    aspect-ratio: 1 / 1;
    border: none;
  }

  .gallery-slider-dots {
    display: flex;
  }

  .gallery-arrow {
    display: flex;
  }
}

/* Specifications Container */
.metafield-rich_text_field {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #ececec;
}

.metafield-rich_text_field ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.metafield-rich_text_field ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6px;
  padding: 14px 18px;
  background: #fafafa;
  border-radius: 10px;
  transition: all .3s ease;
  font-size: 15px;
  line-height: 1.7;
}

.metafield-rich_text_field ul li:hover {
  background: #f5f1e8;
  transform: translateX(4px);
}

.metafield-rich_text_field strong {
  font-weight: 700;
  min-width: 180px;
  display: inline-block;
  letter-spacing: .5px;
}

.metafield-rich_text_field p {
  font-size: 14px;
  text-align: center;
}


@media(max-width:768px) {

  .metafield-rich_text_field {
    padding: 20px;
  }

  .metafield-rich_text_field ul li {
    padding: 12px 15px;
    font-size: 14px;
  }

  .metafield-rich_text_field strong {
    min-width: 100%;
    margin-bottom: 4px;
  }
}

body.template-product.product-page .announcement-bar {
  margin: auto auto 0px;
}

/* ==========================================================================
   COLLECTION PAGE FILTER & SORT STYLES
   ========================================================================== */
.collection-page-wrapper {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 40px 20px;
  color: #1c1b18;
}

.collection-header {
  text-align: center;
  margin-bottom: 40px;
}

.collection-title {
  font-family: var(--font-serif, 'Cinzel');
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.collection-header .breadcrumbs {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #8c8880;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.collection-header .breadcrumbs a {
  color: #8c8880;
  text-decoration: none;
  transition: color 0.2s;
}

.collection-header .breadcrumbs a:hover {
  color: var(--gold, #c5a880);
}

.collection-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e0d8;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

/* Grid layout toggler representation */
.grid-layout-toggler {
  display: flex;
  gap: 8px;
  align-items: center;
}

.grid-toggle-btn {
  background: none;
  border: 1px solid #dcdad5;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 4px;
  transition: all 0.2s ease;
  position: relative;
}

.grid-toggle-btn:hover,
.grid-toggle-btn.active {
  border-color: #000;
  background-color: #fcfbf9;
}

.grid-toggle-btn::before {
  content: '';
  display: block;
  height: 16px;
  width: 2px;
  background-color: #555;
  transition: all 0.2s ease;
}

.grid-toggle-btn:hover::before,
.grid-toggle-btn.active::before {
  background-color: #000;
}

.grid-toggle-btn[data-columns="2"]::before {
  box-shadow: 6px 0 0 #555;
  transform: translateX(-3px);
}

.grid-toggle-btn[data-columns="2"]:hover::before,
.grid-toggle-btn[data-columns="2"].active::before {
  box-shadow: 6px 0 0 #000;
}

.grid-toggle-btn[data-columns="3"]::before {
  box-shadow: 5px 0 0 #555, 10px 0 0 #555;
  transform: translateX(-5px);
}

.grid-toggle-btn[data-columns="3"]:hover::before,
.grid-toggle-btn[data-columns="3"].active::before {
  box-shadow: 5px 0 0 #000, 10px 0 0 #000;
}

.grid-toggle-btn[data-columns="4"]::before {
  box-shadow: 4px 0 0 #555, 8px 0 0 #555, 12px 0 0 #555;
  transform: translateX(-6px);
}

.grid-toggle-btn[data-columns="4"]:hover::before,
.grid-toggle-btn[data-columns="4"].active::before {
  box-shadow: 4px 0 0 #000, 8px 0 0 #000, 12px 0 0 #000;
}

/* Custom Sort Dropdown styling */
.custom-sort-dropdown {
  position: relative;
  width: 220px;
  z-index: 95;
}

.sort-dropdown-trigger {
  width: 100%;
  height: 40px;
  border: 1.5px solid #a7a7a7;
  background: #fff;
  padding: 0 18px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-radius: 20px;
  color: #1c1b18;
  font-weight: 600;
  outline: none;
}

.dropdown-chevron {
  transition: transform 0.2s ease;
}

.sort-dropdown-trigger.open .dropdown-chevron {
  transform: rotate(180deg);
}

.sort-dropdown-options {
  position: absolute;
  top: 45px;
  right: 0;
  width: 100%;
  background: #fff;
  border: 1.5px solid #dcdad5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 100;
  border-radius: 12px;
}

.sort-dropdown-options li {
  padding: 10px 18px;
  font-size: 0.82rem;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sort-dropdown-options li:hover,
.sort-dropdown-options li.active {
  background-color: #fcfbf9;
  color: #000000;
  font-weight: 600;
}

/* Sidebar Layout */
.collection-body-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.collection-sidebar {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}

.filter-widget {
  margin-bottom: 35px;
  border-bottom: 1px solid #f2eee6;
  padding-bottom: 25px;
}

.filter-widget:last-child {
  border-bottom: none;
}

.filter-widget h3 {
  font-family: var(--font-sans, 'Inter');
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1c1b18;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.filter-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #b98a00
}

[dir="rtl"] .filter-widget h3::after {
  left: auto;
  right: 0;
}

/* Search Box Widget */
.filter-search-box input {
  width: 100%;
  height: 40px;
  border: 1px solid #dcdad5;
  background-color: #fff;
  padding: 0 14px;
  font-size: 0.82rem;
  outline: none;
  margin-bottom: 12px;
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.filter-search-box input:focus {
  border-color: #1c1b18;
}

.btn-filter-action {
  display: block;
  width: 100%;
  height: 40px;
  background-color: #b98a00;
  color: #fff;
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-filter-action:hover {
  background-color: var(--gold, #c5a880);
  color: #1c1b18;
}

span.product-card-price {
  color: #fff;
}

/* Price Range Slider Widget */
.price-slider-container {
  width: 100%;
}

.price-slider-wrapper {
  position: relative;
  width: 100%;
  height: 24px;
  margin-bottom: 12px;
}

.price-slider-track {
  position: absolute;
  top: 11px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e5e0d8;
  z-index: 1;
}

.price-range-input {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 14px;
  left: 0;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  z-index: 2;
  outline: none;
}

.price-range-input::-webkit-slider-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background-color: #d4d2ce;
  border: 2px solid var(--gold, #e0dedb);
  cursor: pointer;
  pointer-events: auto;
  -webkit-appearance: none;
  margin-top: -7px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.1s ease;
}

.price-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.price-range-input::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background-color: #d4d2ce;
  border: 2px solid var(--gold, #c5a880);
  cursor: pointer;
  pointer-events: auto;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.1s ease;
}

.price-range-input::-moz-range-thumb:hover {
  transform: scale(1.15);
}

.price-range-labels {
  font-size: 0.82rem;
  color: #5a5550;
  margin-bottom: 16px;
  font-weight: 500;
}

.price-range-labels span {
  font-weight: 700;
  color: #1c1b18;
}

/* Checkbox lists */
.filter-checkbox-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
}

.filter-checkbox-list::-webkit-scrollbar {
  width: 4px;
}

.filter-checkbox-list::-webkit-scrollbar-track {
  background: #f2eee6;
}

.filter-checkbox-list::-webkit-scrollbar-thumb {
  background: var(--gold, #c5a880);
}

.filter-checkbox-list li {
  margin-bottom: 10px;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #5a5550;
  cursor: pointer;
  gap: 10px;
  user-select: none;
}

.filter-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid #dcdad5;
  outline: none;
  cursor: pointer;
  accent-color: var(--gold, #c5a880);
}

.checkbox-text {
  flex: 1;
}

.count-badge {
  font-size: 0.78rem;
  color: #8c8880;
}

/* Product Cards Container */
.collection-products-grid-wrapper {
  flex: 1;
}

.collection-products-grid {
  display: grid;
  gap: 30px;
  transition: all 0.35s ease;
}

.collection-products-grid.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.collection-products-grid.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.collection-products-grid.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.collection-product-card-wrapper {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.collection-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

/* Collection Header Banner */
.collection-banner-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  margin: 30px 0px;
}

.collection-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive sidebars */
@media (max-width: 991px) {
  .collection-body-layout {
    flex-direction: column;
    gap: 40px;
  }

  .collection-sidebar {
    width: 100%;
    position: static;
  }

  .collection-products-grid.grid-cols-3,
  .collection-products-grid.grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .product-card-content {
    gap: 0;
  }


  .custom-prod-title {
    font-size: 10px;
  }

  .collection-products-grid {
    display: grid;
    gap: 10px;
    transition: all 0.35s ease;
  }

  .collection-page-wrapper {
    padding: 40px 7px;
  }

  /* .collection-products-grid.grid-cols-2,
  .collection-products-grid.grid-cols-3, */
  /* .collection-products-grid.grid-cols-4 {
    grid-template-columns: 1fr;
  } */
}

/* ==========================================================================
   RIGHT-TO-LEFT (RTL) SUPPORT
   ========================================================================== */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .footer-grid {
  text-align: right;
}

[dir="rtl"] .gallery-arrow svg,
[dir="rtl"] .slider-arrow svg,
[dir="rtl"] .btn-read-more::after,
[dir="rtl"] .announcement-bar svg {
  transform: scaleX(-1);
}

[dir="rtl"] .action-wishlist-btn {
  margin-right: 0;
  margin-left: 12px;
}

[dir="rtl"] .variant-btn {
  margin-right: 0;
  margin-left: 12px;
}

[dir="rtl"] .product-payment-gateways svg {
  margin-right: 0;
  margin-left: 8px;
}

[dir="rtl"] .cart-drawer-close {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .cart-item-image {
  margin-right: 0;
  margin-left: 16px;
}

[dir="rtl"] .cart-item-remove {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .toast-icon {
  margin-right: 0;
  margin-left: 12px;
}

/* ==========================================================================
   WISHLIST PAGE STYLES
   ========================================================================== */
.wishlist-page-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 60px 20px;
  color: var(--text-light);
}

.wishlist-header {
  text-align: center;
  margin-bottom: 50px;
}

.wishlist-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  color: #000;
  text-transform: uppercase;
}

.wishlist-header .breadcrumbs {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.wishlist-header .breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.wishlist-header .breadcrumbs a:hover {
  color: var(--gold);
}

.wishlist-content-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Grid Layout: matches theme grid */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

@media (max-width: 768px) {

  .justify-center {
    justify-content: start;
    padding: 10px;
  }

  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

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

/* Wishlist Card Custom Styling */
.wishlist-card {
  background-color: var(--bg-darker);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wishlist-card:hover {
  border-color: rgba(197, 155, 39, 0.35);
}

.wishlist-card .product-card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 0.8;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.wishlist-card .product-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wishlist-card:hover .product-card-image-wrapper img {
  transform: scale(1.04);
}

/* Remove Button on Image */
.wishlist-card-remove-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(28, 27, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.wishlist-card-remove-btn:hover {
  background-color: rgba(185, 138, 0, 0.9);
  border-color: var(--gold);
  transform: scale(1.05);
}

.wishlist-card-remove-btn svg {
  display: block;
}

/* Content area */
.wishlist-card .product-card-content {
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: transparent;
}

.wishlist-card .product-title {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.wishlist-card .product-title a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.wishlist-card .product-title a:hover {
  color: var(--gold);
}

.wishlist-card .product-card-price {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 5px;
}

.wishlist-card .btn-wishlist-add-cart {
  width: 100%;
  margin-top: 5px;
}

/* Empty State */
.wishlist-empty-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  border: 1px dashed rgba(217, 217, 217, 0.1);
  /* background-color: var(--bg-darker); */
}

.wishlist-empty-message svg {
  color: var(--text-muted);
  margin-bottom: 24px;
  opacity: 0.7;
}

.wishlist-empty-message p {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  color: var(--text-muted);
}

.wishlist-empty-message .btn-solid-gold {
  min-width: 180px;
}

/* Summary Panel (Checkout Panel) */
.wishlist-summary-panel {
  background-color: #f5f5f5;
  border: 1px solid rgba(197, 155, 39, 0.2);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  border-radius: 4px;
}

.wishlist-summary-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wishlist-summary-count {
  font-size: 0.85rem;
  color: var(--bg-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wishlist-summary-count strong {
  color: var(--bg-dark);
}

.wishlist-summary-total {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--bg-dark);
  text-transform: uppercase;
}

.wishlist-summary-total strong {
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 600;
  margin-left: 5px;
}

.wishlist-summary-actions {
  display: flex;
  gap: 15px;
}

.wishlist-summary-actions button {
  padding: 14px 30px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  font-weight: 600;
}

@media (max-width: 768px) {
  .wishlist-summary-panel {
    flex-direction: column;
    gap: 25px;
    padding: 25px 20px;
    text-align: center;
  }

  .wishlist-summary-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .wishlist-summary-actions button {
    width: 100%;
  }
}

/* Badge Styles for Header */
.wishlist-count-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: var(--gold, #b98a00);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.action-btn {
  position: relative;
  /* ensure the badge absolute positioning is relative to action-btn */
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */
.contact-page-container {
  max-width: var(--container-max-width);
  padding: 60px 40px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: #1c1b18;
  margin-bottom: 15px;
  font-weight: 500;
  text-transform: capitalize;
}

.contact-subheading {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: start;
}

/* Contact Form Left Side */
.contact-form-column {
  display: flex;
  flex-direction: column;
}

.contact-form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #f3fdf8;
  border: 1px solid #d4f5e6;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  color: #1a7f37;
}

.contact-form-success .success-icon {
  font-size: 1.2rem;
  font-weight: bold;
}

.contact-form-errors {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #fff8f8;
  border: 1px solid #ffe3e3;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  color: #cf222e;
}

.contact-form-errors .error-icon {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 2px;
}

.form-row-half {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row-half .field-wrapper {
  flex: 1;
}

.field-wrapper {
  margin-bottom: 20px;
}

.field-wrapper.full-width {
  width: 100%;
}

.contact-form-column input,
.contact-form-column textarea {
  width: 100%;
  padding: 15px 25px;
  border: 1px solid #e1d8cc;
  background-color: #ffffff;
  color: #1c1b18;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-column input {
  border-radius: 30px;
  height: 52px;
}

.contact-form-column textarea {
  border-radius: 15px;
  resize: vertical;
  min-height: 200px;
}

.contact-form-column input::placeholder,
.contact-form-column textarea::placeholder {
  color: #888888;
}

.contact-form-column input:focus,
.contact-form-column textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

.submit-wrapper {
  margin-top: 10px;
}

.btn-contact-submit {
  background-color: #000000;
  color: #ffffff;
  padding: 14px 45px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
}

.btn-contact-submit:hover {
  background-color: var(--gold);
}

.btn-contact-submit:active {
  transform: scale(0.98);
}

/* Contact Details Right Side Box */
.contact-details-column {
  position: sticky;
  top: 40px;
}

.contact-details-box {
  padding: 45px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-details-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-details-logo-image {
  max-width: 150px;
  height: auto;
}

.contact-details-logo-emblem {
  flex-shrink: 0;
  opacity: 0.95;
}

.contact-details-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details-logo-text {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-details-logo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: 0.85;
}

.contact-info-rows {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-row {
  line-height: 1.6;
}

.contact-info-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
  opacity: 0.85;
}

.contact-info-value {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.95;
}

.contact-details-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 35px 0;
}

.contact-social-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-social-heading {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.contact-social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icon-link {
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
  opacity: 0.85;
  display: inline-flex;
}

.social-icon-link:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.social-icon-link svg {
  display: block;
}


header.main-header.transparent-header .menu-toggle-btn {
  color: #fff;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {

  .header-actions {
    gap: 8px;
  }

  .collection-title {
    font-size: 1rem;
  }

  .collection-banner-container {
    margin: 0;
  }

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }

  .contact-details-box {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .contact-page-container {
    padding: 40px 20px;
  }

  .contact-header {
    margin-bottom: 35px;
  }

  .contact-title {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-details-column {
    position: static;
  }

  .form-row-half {
    flex-direction: column;
    gap: 0;
  }

  .form-row-half .field-wrapper:first-child {
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */
.about-page-container {
  max-width: var(--container-max-width);
  padding: 60px 40px;
  margin: 0 auto;
}

.about-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-column {
  width: 100%;
}

.about-image-wrapper {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.about-story-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-story-img:hover {
  transform: scale(1.02);
}

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

.about-story-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #1c1b18;
  margin-bottom: 25px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-story-content {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333333;
}

.about-story-content p {
  margin-bottom: 20px;
}

.about-story-content p:last-child {
  margin-bottom: 0;
}

/* Image alignment reversal option */
.about-us-grid.grid-reverse .about-image-column {
  order: 2;
}

.about-us-grid.grid-reverse .about-text-column {
  order: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .about-us-grid {
    gap: 40px;
  }

  .about-story-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .about-page-container {
    padding: 40px 20px;
  }

  .about-us-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-us-grid.grid-reverse .about-image-column,
  .about-us-grid.grid-reverse .about-text-column {
    order: unset;
  }

  .about-story-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .about-image-wrapper {
    border-radius: 12px;
  }
}

/* ==========================================================================
   ABOUT US PAGE EXTENSIONS STYLES
   ========================================================================== */

/* 1. Stats, Mission & Vision Section */
.stats-mission-section {
  position: relative;
  width: 100%;
}

.about-stats-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.stats-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stats-card-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  pointer-events: none;
  /* Let clicks pass through to container */
  padding: 0 40px;
  max-width: var(--container-max-width);
}

.stats-card-overlay {
  background-color: #ffffff;
  /* border-radius: 20px 20px 0 0; */
  padding: 40px 45px 55px 45px;
  max-width: 680px;
  width: 100%;
  position: relative;
  pointer-events: auto;
  /* Enable clicks on the card itself */
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.04);
}

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

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-sans);
  font-size: 2.3rem;
  font-weight: 700;
  color: #1c1b18;
  line-height: 1.1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #666666;
  margin-top: 6px;
  line-height: 1.3;
  font-weight: 500;
}

.stats-card-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 12px;
}

.mission-vision-container {
  max-width: var(--container-max-width);
  padding: 100px 40px 70px 40px;
  margin: 0 auto;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.mission-column,
.vision-column {
  display: flex;
  flex-direction: column;
}

.mv-subtitle {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: #1c1b18;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  display: block;
}

.mv-heading {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 700;
  color: #1c1b18;
  margin-bottom: 20px;
  line-height: 1.35;
}

.mv-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555555;
}

/* 2. Brands and Partner Logos Section */
.about-brands-section {
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.about-brands-section .container {
  max-width: var(--container-max-width);
  padding: 0 40px;
  margin: 0 auto;
}

.brands-top-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  margin-bottom: 50px;
  align-items: start;
}

.brands-stat-block {
  display: flex;
  flex-direction: column;
}

.brands-stat-num {
  font-family: var(--font-sans);
  font-size: 3.5rem;
  font-weight: 700;
  color: #1c1b18;
  line-height: 1.1;
}

.brands-stat-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: #1c1b18;
  letter-spacing: 0.15em;
  margin-top: 8px;
  text-transform: uppercase;
}

.brands-desc-text {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  line-height: 1.65;
  color: #1c1b18;
  font-weight: 400;
}

.brands-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.brand-logo-card {
  background-color: #ffffff;
  border: 1px solid #e1d8cc;
  border-radius: 8px;
  padding: 25px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 95px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.brand-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.brand-card-img {
  max-width: 85%;
  max-height: 42px;
  object-fit: contain;
  display: block;
}

.brand-card-text-fallback {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1c1b18;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

/* 3. Value Propositions Layout & Width tweaks */
.full-width-props {
  max-width: var(--container-max-width);
  padding: 0 40px;
  margin: 0 auto;
}

/* Responsive Overrides */
@media (max-width: 1199px) {
  .mission-vision-grid {
    gap: 50px;
  }
}

@media (max-width: 991px) {

  .sticky-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .sticky-whatsapp svg {
    width: 28px;
    height: 28px;
  }

  [dir="rtl"] .sticky-whatsapp {
    left: 20px;
  }

  .stats-card-overlay {
    max-width: 580px;
    padding: 30px 35px 45px 35px;
  }

  .stat-number {
    font-size: 1.9rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .mission-vision-grid {
    gap: 40px;
  }

  .mv-heading {
    font-size: 1.45rem;
  }

  .brands-top-row {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }

  .brands-stat-num {
    font-size: 2.8rem;
  }

  .brands-desc-text {
    font-size: 1.15rem;
  }

  .brands-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .brand-logo-card {
    min-height: 85px;
    padding: 20px 10px;
  }
}

.product-detail-info .accordion-icon {
  display: block !important;
}

a.back-to-top svg {
  color: #000;
}

.contact-text p {
  font-family: 'Orbitron';
  color: #fff;
}

@media (max-width: 768px) {


  .stats-card-container {
    position: static;
    transform: none;
    padding: 0;
  }

  .stats-card-overlay {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #eaeaea;
    padding: 35px 20px 45px 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 20px;
  }

  .stats-card-accent-bar {
    width: 30%;
  }

  .mission-vision-container {
    padding: 60px 20px 40px 20px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .mv-heading {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }

  .about-brands-section .container {
    padding: 0 20px;
  }

  .brands-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .brand-logo-card {
    min-height: 75px;
  }
}

/* ==========================================================================
   SEARCH RESULTS PAGE STYLES
   ========================================================================== */
.search-page-container {
  max-width: var(--container-max-width);
  padding: 60px 40px;
  margin: 0 auto;
}

.search-page-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.search-page-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: #1c1b18;
  margin-bottom: 25px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.search-page-form {
  margin-bottom: 20px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  background-color: #ffffff;
  border: 1px solid #e1d8cc;
  border-radius: 30px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.search-input-wrapper:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

.search-input-pill {
  flex-grow: 1;
  border: none;
  background: none;
  outline: none;
  padding: 16px 65px 16px 25px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #1c1b18;
  height: 54px;
}

.search-input-pill::placeholder {
  color: #888888;
}

.search-submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 54px;
  background-color: var(--gold);
  color: #ffffff;
  border: none;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease;
}

.search-submit-btn:hover {
  background-color: var(--gold-hover);
}

.search-submit-btn svg {
  display: block;
}

.search-page-stats {
  margin-top: 15px;
}

.search-stats-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #555555;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Custom Text Card for articles/pages */
.search-result-card.text-card {
  background-color: #ffffff;
  border: 1px solid #e1d8cc;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.search-result-card.text-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.result-badge {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  background-color: #fcf9f2;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
  letter-spacing: 0.08em;
}

.result-title {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}

.result-title a {
  color: #1c1b18;
  text-decoration: none;
  transition: color 0.2s;
}

.result-title a:hover {
  color: var(--gold);
}

.result-excerpt {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.65;
  color: #555555;
  margin: 0;
}

.result-read-more {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}

.result-read-more:hover {
  color: var(--gold-hover);
}

/* Styled custom pagination */
.custom-pagination {
  margin-top: 40px;
}

.pagination-list {
  display: flex;
  list-style: none;
  gap: 8px;
  justify-content: center;
  padding: 0;
}

.pagination-link,
.pagination-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e1d8cc;
  border-radius: 50%;
  color: #1c1b18;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.pagination-link:hover,
.pagination-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pagination-link.active {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

.pagination-link.gap {
  border: none;
  color: #888888;
  cursor: default;
}

/* Empty search states */
.search-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 0;
}

.search-empty-icon {
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 25px;
}

.search-empty-message {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
  max-width: 500px;
  margin: 0 auto 35px auto;
}

.popular-searches-box {
  margin-bottom: 60px;
  width: 100%;
  max-width: 600px;
}

.popular-searches-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: #1c1b18;
  letter-spacing: 0.12em;
  margin-bottom: 15px;
  display: block;
}

.popular-tags-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.quick-search-tag {
  background-color: #ffffff;
  border: 1px solid #e1d8cc;
  border-radius: 20px;
  padding: 8px 20px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: #1c1b18;
  cursor: pointer;
  transition: all 0.25s ease;
}

.quick-search-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: #fcfcfc;
}

.search-recommendations {
  border-top: 1px solid #eaeaea;
  padding-top: 60px;
  width: 100%;
}

.search-recommendations-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #1c1b18;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Responsive Grids */
@media (max-width: 991px) {
  .search-results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .search-page-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .search-page-container {
    padding: 40px 20px;
  }

  .search-page-header {
    margin-bottom: 35px;
  }

  .search-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .search-page-title {
    font-size: 1.6rem;
  }

  .search-input-pill {
    padding: 12px 55px 12px 20px;
    height: 48px;
    font-size: 0.95rem;
  }

  .search-submit-btn {
    width: 48px;
  }
}

@media (max-width: 480px) {
  .search-results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Custom AJAX Pagination (Load More) */
.custom-ajax-pagination {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pagination-progress-text {
  font-size: 1rem;
  color: #777;
  margin-bottom: 15px;
}

.pagination-progress-bar {
  width: 250px;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 25px;
}

.pagination-progress-fill {
  height: 100%;
  background-color: #ba8c53;
  /* matches the gold tone from the image */
  border-radius: 4px;
  transition: width 0.3s ease;
}

.btn-load-more {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
  border-radius: 30px;
  padding: 10px 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}

.btn-load-more:hover {
  background-color: #000;
  color: #fff;
}

.btn-load-more:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Sticky WhatsApp Button */
.sticky-whatsapp {
  position: fixed;
  bottom: 80px;
  left: 10px;
  background-color: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.sticky-whatsapp svg {
  fill: #fff;
  width: 35px;
  height: 35px;
}

[dir="rtl"] .sticky-whatsapp {
  right: auto;
  left: 30px;
}

/* Custom Inline Header Layout CSS */
@media (min-width: 992px) {
  header.main-header {
    background-color: #fff !important;
    position: relative !important;
  }

  .header-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    min-height: 80px !important;
    max-width: 95% !important;
  }

  .logo-wrapper {
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .logo-emblem {
    max-height: 40px !important;
  }

  .nav-bar.desktop-nav {
    flex: 1 1 auto;
    border: none !important;
    padding: 0 !important;
    margin-top: 0 !important;
    display: flex !important;
    justify-content: center !important;
  }

  .nav-list {
    display: flex !important;
    gap: 35px !important;
    align-items: center !important;
  }

  .nav-link {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #000 !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important;
  }

  .header-actions {
    position: static !important;
    transform: none !important;
    flex: 0 0 auto;
    gap: 25px !important;
    color: #000 !important;
  }

  .action-btn {
    color: #000 !important;
    filter: none !important;
  }

  .cart-badge {
    background-color: #000 !important;
    color: #fff !important;
    right: -10px !important;
    top: -5px !important;
  }
}

/* Custom Styled Product Card */
.custom-styled-card {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.custom-styled-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.custom-img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  /* 1:1 Aspect ratio if needed, or adjust based on image */
  overflow: hidden;
  display: block;
}

.custom-img-wrapper a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.custom-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-sold-out-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #fff;
  padding: 8px 4px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-sold-out-badge span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  color: #ff4500;
  /* Orange color */
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  scroll-snap-align: start;
}

.social-shop-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0.9;
  transition: 0.3s;
}

.instagram-item:hover .social-shop-btn {
  opacity: 1;
  background: var(--gold);
  color: #fff;
}

.instagram-video,
.instagram-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.instagram-item:hover .instagram-video,
.instagram-item:hover .instagram-thumb {
  transform: scale(1.05);
}

.custom-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #000;
  z-index: 2;
}

.custom-wishlist-btn svg {
  width: 18px;
  height: 18px;
}

.custom-wishlist-btn:hover {
  color: #ff4500;
}

.custom-content-wrapper {
  padding: 10px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-prod-title {
  margin: 0 0 8px 0;
  font-size: 13px;
  line-height: 1.4;
}

.custom-prod-title a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.custom-prod-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
}

.custom-current-price {
  font-weight: 700;
  font-size: 17px;
  color: #000;
}

.custom-compare-price {
  font-weight: 400;
  font-size: 17px;
  color: #999;
  text-decoration: line-through;
}

/* =========================================
   OVERHAUL CSS: GLOBAL STYLES & NEW SECTIONS
   ========================================= */

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #fff;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

/* Global Section Header */
.section-header.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.section-header.align-end {
  align-items: flex-end;
}


.section-subtitle-small {
  font-size: 12px;
  font-weight: 700;
  color: #666;
  margin-bottom: 5px;
}

.view-all-link {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Shop by Sport */
.shop-by-sport-section {
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.category-list-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}

.category-list-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera*/
}

.category-list {
  display: flex;
  gap: 30px;
  min-width: max-content;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 15px;
  width: 140px;
}

.category-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 340px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-title {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}

/* Tabbed Products */
.tabbed-products-section {
  padding: 60px 0;
  background: #fff;
}

.collection-tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.collection-tab-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0 0 10px 0;
  font-weight: 700;
  font-family: 'Orbitron';
  cursor: pointer;
  color: #666;
  transition: 0.3s;
}

.collection-tab-btn.active {
  color: #000;
  border-bottom-color: #000;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* 4-column product grid for tabbed section */
.tabbed-products-section .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  grid-auto-flow: row;
}

.product-card {
  border: 1px solid #e0e0e0;
  background: #fff;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Testimonials */
.testimonials-section {
  padding: 60px 0;
  background: #f5f5f5;
}

.review-summary {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-number {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.rating-stars-text .stars {
  color: #F89B29;
  font-size: 16px;
  margin-bottom: 5px;
}

.review-count {
  font-size: 12px;
  color: #666;
}

.testimonial-slider-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.testimonial-slider-container::-webkit-scrollbar {
  display: none;
}

.testimonials-grid {
  display: flex;
  gap: 30px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: start;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.testimonial-grid-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-smooth);
}

.testimonial-grid-arrow:hover {
  background: #fff;
  color: #000;
}

.testimonial-grid-arrow.prev {
  left: -24px;
}

.testimonial-grid-arrow.next {
  right: -24px;
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 10px);
  }

  .testimonial-grid-arrow {
    display: none;
  }
}

.testimonial-card .stars {
  color: #F89B29;
  font-size: 16px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
}

.verified-buyer {
  font-size: 11px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
}

/* Instagram Grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

gap: 40px;
}

.footer-brand-name {
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
}

.footer-newsletter h4 {
  font-size: 12px;
  margin-bottom: 10px;
}

.footer-newsletter p {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  border: 1px solid #444;
  border-radius: 4px;
  overflow: hidden;
}

.newsletter-form input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 15px;
  flex-grow: 1;
  font-size: 13px;
  outline: none;
}

.newsletter-form button {
  background: transparent;
  border: none;
  color: #fff;
  padding: 0 15px;
  cursor: pointer;
  font-size: 18px;
}

.footer-social-row {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.footer-social-row a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

.footer-col h4 {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
}

.links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-col li {
  margin-bottom: 10px;
}

.links-col a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  transition: .3s;
  font-family: 'Orbitron';
  letter-spacing: 2px;
}

.links-col a:hover {
  color: #fff;
}

.app-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.app-badge {
  max-width: 140px;
}

@media (max-width: 991px) {
  .tabbed-products-section .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 0px;
  }

  .instagram-grid {
    display: flex;
    gap: 5px;
  }

  .instagram-item {
    flex: 0 0 calc(50% - 5px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   NEW DESKTOP HEADER LAYOUT 
========================================================== */
@media screen and (min-width: 992px) {
  .header-container {
    display: flex;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px !important;
    min-height: 80px !important;
  }

  .logo-wrapper {
    flex: 0 0 auto;
    margin-right: auto;
  }

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

  .nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
  }

  .nav-link {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #1a1814 !important;
    text-transform: capitalize !important;
    position: relative;
    padding-bottom: 5px;
  }

  /* Active state with orange underline */
  .nav-link.active {
    color: #000 !important;
    /* Rust orange */
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
  }

  /* Dropdown icon in nav */
  .dropdown-icon {
    margin-top: 2px;
    stroke: #1a1814;
    transition: transform 0.3s ease;
  }

  .nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
  }

  .header-actions {
    flex: 0 0 auto;
    position: static !important;
    transform: none !important;
    display: flex;
    align-items: center;
    gap: 24px !important;
    margin-left: auto;
  }

  .action-btn {
    display: flex;
    align-items: center;
    color: #1a1814 !important;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .wishlist-count-badge,
  .cart-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    background-color: #b44018 !important;
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    line-height: 1 !important;
  }

  .action-btn.cart-toggle .cart-badge {
    right: -8px !important;
    top: -8px !important;
  }
}

/* ==========================================================
   MOBILE HEADER RESPONSIVENESS FIX
========================================================== */
@media screen and (max-width: 991px) {
  .desktop-only-text {
    display: none !important;
  }

  .header-actions {
    gap: 12px !important;
    right: 15px !important;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .header-actions .action-btn,
  .header-actions .action-btn svg,
  .menu-toggle-btn,
  .menu-toggle-btn svg,
  header.main-header.transparent-header .menu-toggle-btn {
    color: #000 !important;
  }

  /* Optional: Make action icons slightly smaller on very small screens to fit next to logo */
  @media screen and (max-width: 480px) {
    .header-actions {
      gap: 8px !important;
    }

    .action-btn svg {
      width: 20px !important;
      height: 20px !important;
    }

    .brand-logo .brand-main {
      font-size: 1.2rem !important;
      /* shrink logo slightly to make room */
    }
  }
}

.wishlist-toggle-btn.active svg {
  fill: currentColor;
}

/* ==========================================================================
   WISHLIST DRAWER
   ========================================================================== */
.wishlist-drawer-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.4s;
}

.wishlist-drawer-wrapper.open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}

.wishlist-drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.wishlist-drawer-wrapper.open .wishlist-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

.wishlist-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background-color: #fff;
  border-left: 1px solid var(--border-gold);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
  color: #000;
}

.wishlist-drawer-wrapper.open .wishlist-drawer {
  transform: translateX(0);
}

.wishlist-drawer-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wishlist-drawer-header h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin: 0;
}

.wishlist-drawer-close {
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.wishlist-drawer-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.wishlist-drawer-items-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
}

.wishlist-empty-message-drawer {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  color: var(--text-muted);
}

.wishlist-empty-message-drawer p {
  font-size: 0.9rem;
}

.close-wishlist-drawer-link {
  font-size: 0.8rem;
  padding: 10px 24px;
}

.wishlist-drawer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.wishlist-drawer-item {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wishlist-drawer-item-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.wishlist-drawer-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wishlist-drawer-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wishlist-drawer-item-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 4px;
}

.wishlist-drawer-item-price {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

.wishlist-drawer-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  margin-top: 10px;
}

.wishlist-drawer-item-remove {
  color: #ff5252;
  font-weight: 600;
  font-family: var(--font-serif);
  cursor: pointer;
  background: none;
  border: none;
  font-size: .75rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 2px solid #ff0e0e;
  padding: 10px 24px;
}

.wishlist-drawer-item-remove:hover {
  background: #f97373;
  color: #fff;
}

.wishlist-drawer-item-addcart {
  color: #000;
  font-weight: 600;
  font-family: var(--font-serif);
  cursor: pointer;
  background: none;
  border: none;
  font-size: .75rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 1px solid #000;
  padding: 10px 24px;
}

.wishlist-drawer-item-addcart:hover {
  color: #fff;
  background: #000;
}

.wishlist-drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #fff;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE V2
   ========================================================================== */

/* Layout */
.product-detail-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .product-detail-layout {
    padding: 50px 0px;
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Gallery layout */
.product-detail-gallery {
  flex: 1;
}

.gallery-layout {
  display: flex;
  gap: 20px;
  flex-direction: column-reverse;
}

@media (min-width: 992px) {
  .gallery-layout {
    flex-direction: row;
  }
}

/* Thumbnails */
.gallery-thumbnails {
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-x: auto;
}

@media (min-width: 992px) {
  .gallery-thumbnails {
    flex-direction: column;
    overflow-x: visible;
    width: 80px;
  }
}

.thumbnail-item {
  width: 80px;
  height: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.thumbnail-item.active {
  border: 2px solid #000;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #f8f8f8;
}

/* Main Image */
.gallery-main-image-container {
  flex: 1;
  position: relative;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.gallery-main-img {
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: contain;
  cursor: zoom-in;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #333;
}

.gallery-arrow:hover {
  background: #f0f0f0;
}

.gallery-arrow.prev {
  left: 20px;
}

.gallery-arrow.next {
  right: 20px;
}

/* Product Info */
.product-detail-info {
  flex: 1;
}

.product-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.product-info-price-row {
  display: flex;
  align-items: baseline;
  gap: 15px;
  border-bottom: 1px solid #eee;
}

.price-val {
  font-size: 1.2rem;
  font-weight: 600;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.stock-badge-text {
  font-size: 0.8rem;
  color: #27ae60;
}

.stock-badge-text.out-of-stock {
  color: #e74c3c;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
  font-family: 'Orbitron';
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px 0;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  display: none;
  padding-bottom: 15px;
  font-size: 0.9rem;
  color: #555;
}

.accordion-content.active {
  display: block;
}

.accordion-icon {
  font-size: 1.2rem;
  font-weight: 400;
}



.size-label {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.variants-row.size-boxes {
  display: flex;
  gap: 10px;
}

.variant-size-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.variant-size-btn.active {
  border: 2px solid #000;
}

.variant-size-btn.sold-out {
  color: #aaa;
  border-color: #eee;
}

.variant-size-btn.sold-out::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, transparent 48%, #f0a38b 49%, #f0a38b 51%, transparent 52%);
}

/* Purchase Row */
.product-purchase-row.flex-purchase {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0px;
  flex-wrap: wrap;
}

.product-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 5px 10px;
  height: 45px;
}

.qty-control {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 5px;
}

.qty-val {
  width: 30px;
  text-align: center;
  border: none;
  font-size: 1rem;
}

.size-chart-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.btn-product-add-to-cart.pill-button {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0 30px;
  height: 45px;
  font-weight: 600;
  font-size: 0.8rem;
  font-family: 'Orbitron';
  letter-spacing: 0.1em;
  flex: 1;
  cursor: pointer;
  min-width: 150px;
  transition: opacity 0.2s;
}

.btn-product-add-to-cart.pill-button:hover {
  opacity: 0.8;
}

/* Wishlist row */
.wishlist-row {
  border-bottom: 1px solid #eee;
}

.action-wishlist-btn.text-wishlist {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
}

/* Trust Badges */
.product-trust-badges {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  text-align: center;
  flex: 1;
}

/* Customers viewing */
.customers-viewing {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.viewing-dot {
  width: 6px;
  height: 6px;
  background-color: #333;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* Wishlist Active State */
.action-wishlist-btn.active svg {
  fill: #ff3b3b;
  stroke: #ff3b3b;
}

.action-wishlist-btn.active {
  color: #ff3b3b;
}

.action-wishlist-btn.text-wishlist svg {
  display: inline-block;
  visibility: visible;
  opacity: 1;
}

button#product-wishlist-toggle {
  width: 100%;
  justify-content: flex-start;
}

/* NEW FILTER DESIGN CSS */
.collection-sidebar.new-filter-design {
  font-family: var(--font-sans, 'Inter', sans-serif);
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.sidebar-header h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #111;
}

.sidebar-header .clear-all {
  font-size: 0.85rem;
  color: #555;
  text-decoration: underline;
}

.active-filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  background-color: #f2f2f2;
  color: #333;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.active-filter-tag button {
  background: none;
  border: none;
  margin-left: 6px;
  cursor: pointer;
  color: #555;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0;
}

.filter-group {
  border-top: 1px solid #e0e0e0;
}

.filter-group:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.filter-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  /* Hide default arrow */
}

.filter-group-header::-webkit-details-marker {
  display: none;
}

.filter-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
}

.active-count-badge {
  background: #111;
  color: #fff;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.filter-group[open] .chevron {
  transform: rotate(180deg);
}

.chevron {
  transition: transform 0.3s ease;
}

.filter-group-content {
  padding-bottom: 16px;
}

.filter-checkbox-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-checkbox-list li {
  margin-bottom: 12px;
}

.custom-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.custom-checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkmark {
  height: 18px;
  width: 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}

.custom-checkbox-label input:checked~.custom-checkmark {
  background-color: #111;
  border-color: #111;
}

.custom-checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox-label input:checked~.custom-checkmark:after {
  display: block;
}

.checkbox-text {
  font-size: 0.9rem;
  color: #333;
}

.checkbox-text sup {
  color: #888;
  font-size: 0.75rem;
  margin-left: 4px;
}

.price-input-boxes {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.price-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px 12px;
  flex: 1;
}

.price-input-wrap .currency-symbol {
  color: #555;
  font-size: 0.9rem;
  margin-right: 6px;
}

.price-input-wrap input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.9rem;
  color: #333;
  -moz-appearance: textfield;
}

.price-input-wrap input::-webkit-outer-spin-button,
.price-input-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #ccc;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright a {
  color: #fff;
  text-decoration: none;
}

.footer-payment-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-payment-icons svg {
  height: 24px;
  width: auto;
}

/* ========================================= */
/* BLACK & WHITE FOOTER REDESIGN STYLES     */
/* ========================================= */

.main-footer {
  background-color: #000;
  color: #fff;
  padding: 0;
  margin: 0;
  font-family: var(--font-sans, 'Inter', sans-serif);
}

.main-footer a {
  color: #fff;
  text-decoration: none;
}

.main-footer a:hover {
  text-decoration: underline;
}

/* 1. Top Newsletter Section */
.footer-top-section {
  padding: 60px 0;
  border-bottom: 1px solid #333;
}

.footer-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.giant-heading {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -1px;
}

.footer-newsletter {
  max-width: 500px;
  width: 100%;
}

.newsletter-input-group {
  display: flex;
  background: #fff;
  border-radius: 4px;
  padding: 1px;
  width: 100%;
}

.newsletter-input-group input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 15px 20px;
  font-size: 1rem;
  color: #000;
}

.newsletter-input-group input:focus {
  outline: none;
}

.newsletter-input-group .btn-subscribe {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000;
  padding: 10px 20px;
  font-family: var(--font-serif);
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
}

.newsletter-input-group .btn-subscribe:hover {
  background: #000;
  color: #fff;
}

/* 2. Social Links Section */
.footer-social-section {
  border-bottom: 1px solid #333;
}

.social-title-row {
  padding: 20px 0;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.footer-social-grid {
  display: flex;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
}

.footer-social-item {
  flex: 1;
  padding: 20px;
  border-right: 1px solid #333;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: background-color 0.2s;
}

.footer-social-item:hover {
  background-color: #111;
  text-decoration: none;
}

.social-icon {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* 3. Links Section */
.footer-links-section {
  padding: 60px 0;
}

.footer-links-section .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: left;
  margin: 0;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.contact-text {
  line-height: 1.5;
}

/* 4. Giant Marquee Section */
.footer-marquee-section {
  overflow: hidden;
  padding: 40px 0 20px;
  white-space: nowrap;
  width: 100%;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.marquee-text-container {
  display: inline-flex;
  animation: marquee-scroll 25s linear infinite;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-giant-text {
  font-size: 15vw;
  /* Extremely large */
  font-weight: 900;
  margin: 0;
  line-height: 0.8;
  color: #fff;
  letter-spacing: -2px;
  padding-right: 50px;
}

/* 5. Bottom Copyright Section */
.footer-bottom {
  border-top: none;
  padding: 20px 0;
  margin-top: 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-family: 'Orbitron';
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 2px;
}

.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #000;
  border-radius: 4px;
}

.back-to-top:hover {
  background: #ccc;
}

/* Desktop Accordion Styles */
.footer-accordion summary {
  list-style: none;
  /* Hide default triangle */
}

.footer-accordion summary::-webkit-details-marker {
  display: none;
}

.footer-accordion summary {
  pointer-events: none;
  /* Disable toggle on desktop */
}

.accordion-icon {
  display: none;
}

.footer-accordion[open] .accordion-content,
.footer-accordion:not([open]) .accordion-content {
  display: block;
  /* Always visible on desktop regardless of attribute */
}

.main-footer a:hover {
  color: #fff;
  text-decoration: none;
}

.social-title-row {
  font-family: 'Orbitron';
  font-size: 8px;
}

/* Responsive Overrides */
@media (max-width: 768px) {

  .section-header.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .tabbed-products-section .product-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .tabbed-products-section .product-grid::-webkit-scrollbar {
    display: none;
  }

  .tabbed-products-section .product-card {
    flex: 0 0 75%;
    scroll-snap-align: start;
  }

  .newsletter-input-group {
    justify-content: end;
  }

  .newsletter-input-group input {
    padding: 0px;
    margin-right: -5px;
    text-align: center;
  }

  .footer-top-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .giant-heading {
    font-size: 1.5rem;
  }

  /* 2x2 Mobile Social Grid */
  .footer-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .footer-social-item {
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 12px 5px;
    font-size: 0;
    /* Hide text */
    justify-content: center;
  }

  .footer-social-item .social-icon {
    font-size: 1.2rem;
    margin-right: 0;
  }

  .footer-social-item:nth-child(2n) {
    border-right: none;
  }

  .footer-social-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* Mobile Accordions */
  .footer-accordion summary {
    pointer-events: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 15px;
    cursor: pointer;
  }

  .footer-accordion h4 {
    margin-bottom: 0;
  }

  .accordion-icon {
    display: block;
    font-size: 1.5rem;
    font-weight: normal;
    transition: transform 0.2s;
  }

  .footer-accordion:not([open]) .accordion-content {
    display: none;
  }

  .footer-accordion[open] .accordion-content {
    display: block;
    margin-bottom: 20px;
  }

  .footer-accordion[open] .accordion-icon {
    transform: rotate(45deg);
  }

  .footer-links-section .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.btn-instagram-follow {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: var(--gold, #d4af37);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-instagram-follow:hover {
  background: #000;
  color: #fff;
}

.product-card-link {
  border: 1px solid #e1e1e1;
  border-radius: 13px 0px 13px 13px;
}

@media (max-width: 768px) {

  a.back-to-top {
    display: none;
  }

  .tabbed-products-section {
    padding: 10px;

  }

  .collection-tabs {
    font-size: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
    margin-bottom: 10px;
    gap: 20px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
  }

  .collection-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
  }

  .collection-tab-btn {
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   MOBILE COLLECTION FILTER MODAL (CUSTOM)
   ========================================================================== */
@media (max-width: 991px) {
  .desktop-controls {
    display: none !important;
  }

  .mobile-collection-controls {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0;
  }

  .mobile-filter-and-sort-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
  }

  .mobile-products-count {
    font-size: 14px;
    font-weight: 600;
    color: #000;
  }

  /* Modal Overlay */
  .collection-sidebar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100%;
    height: 100dvh;
    background: #fff;
    z-index: 99999;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: block !important;
  }

  .collection-sidebar.mobile-modal-active {
    transform: translateY(0);
  }

  .mobile-modal-header {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
  }

  .mobile-modal-title-group h2 {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 600;
  }

  .mobile-modal-count {
    font-size: 14px;
    color: #666;
  }

  .close-mobile-filter {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
  }

  .mobile-sort-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
  }

  .mobile-sort-label {
    font-size: 16px;
    font-weight: 600;
  }

  /* Make sort dropdown look native inside the modal */
  .mobile-sort-wrapper .custom-sort-dropdown {
    position: relative;
    width: auto;
  }

  .mobile-sort-wrapper .sort-dropdown-trigger {
    border: none;
    padding: 0;
    background: none;
    font-size: 15px;
    color: #333;
  }

  .mobile-sort-wrapper .sort-dropdown-options {
    width: max-content;
    min-width: 200px;
    right: 0;
    left: auto;
    top: 100%;
    border: 1px solid #eee;
    margin-top: 10px;
  }

  .mobile-modal-footer {
    display: block !important;
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #eee;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 100;
  }

  .btn-mobile-apply-filters {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 4px;
  }
}