/* ==========================================================================
   ZENVY INTERNATIONAL — PHASE 1 LUXURY HOMEPAGE STYLESHEET
   Design Language: Luxury Editorial Leather Brand + International Export E-Commerce
   ========================================================================== */

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

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --bg-dark-primary: #0A0A0C;
  --bg-dark-secondary: #111113;
  --bg-dark-tertiary: #161619;
  --bg-dark-footer: #060607;
  
  --bg-light-primary: #F8F6F1;
  --bg-light-secondary: #EFECE5;
  --bg-light-card: #FFFFFF;

  --accent-gold-primary: #D1A568;
  --accent-gold-hover: #E3B87A;
  --accent-gold-subtle: rgba(209, 165, 104, 0.15);
  --accent-gold-border: rgba(209, 165, 104, 0.35);

  --text-light-headline: #F4F1EA;
  --text-light-body: #A5A39C;
  --text-light-muted: #6B6963;

  --text-dark-headline: #181716;
  --text-dark-body: #4A4843;
  --text-dark-muted: #85827A;

  --border-dark: rgba(255, 255, 255, 0.08);
  --border-gold-thin: rgba(209, 165, 104, 0.25);
  --border-light: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-serif-luxury: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-serif-editorial: 'Playfair Display', Georgia, serif;
  --font-sans-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing & Heights */
  --header-height: 80px;
  --max-width: 1380px;

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Global Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark-primary);
  color: var(--text-light-body);
  font-family: var(--font-sans-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  width: 100%;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans-body);
  transition: var(--transition-fast);
}

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

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

/* Typography Utility Classes */
.gold-uppercase-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold-primary);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.gold-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold-primary), transparent);
  margin: 0.75rem auto 1.5rem;
}

/* --- BUTTONS --- */
.btn-gold-filled {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--accent-gold-primary);
  color: #0E0E10;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 2px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(209, 165, 104, 0.15);
}

.btn-gold-filled:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(209, 165, 104, 0.3);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--text-light-headline);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.btn-gold-outline:hover {
  border-color: var(--accent-gold-primary);
  color: var(--accent-gold-primary);
  background-color: rgba(209, 165, 104, 0.05);
  transform: translateY(-2px);
}

/* ==========================================================================
   1. HEADER SECTION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.site-header.scrolled {
  background-color: rgba(6, 6, 8, 0.95);
  border-bottom-color: rgba(209, 165, 104, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

/* Brand Monogram & Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.site-brand-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.site-brand-logo-img:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.logo-monogram-svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-serif-luxury);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-light-headline);
  text-transform: uppercase;
}

.brand-text span {
  font-size: 0.65rem;
  vertical-align: super;
  font-weight: 400;
  color: var(--accent-gold-primary);
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: rgba(244, 241, 234, 0.85);
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
}

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

.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-gold-primary);
  border-radius: 1px;
}

/* Navigation Dropdown Menu */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  min-width: 230px;
  background: #161619;
  border: 1px solid rgba(209, 165, 104, 0.35);
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
  padding: 0.4rem 0;
  z-index: 1300;
}

.nav-dropdown-menu .dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  color: #F4F1EA;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  transition: background-color 0.2s, color 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}

.nav-dropdown-menu .dropdown-item:hover {
  background: rgba(209, 165, 104, 0.15);
  color: var(--accent-gold-primary);
}

.dropdown-item-count {
  font-size: 0.68rem;
  color: var(--accent-gold-primary);
  font-weight: 700;
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 7px;
  border-radius: 10px;
  border: 1px solid rgba(209, 165, 104, 0.2);
}

/* Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

/* ==========================================================================
   HEADER SUB-SEARCH BAR STRIP (Sleek Under-Header Search Bar)
   ========================================================================== */
.header-sub-search-strip {
  position: relative;
  z-index: 100;
  margin-top: calc(var(--header-height) + 6px);
  background: rgba(14, 14, 17, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(209, 165, 104, 0.25);
  padding: 0.55rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  width: 100%;
  box-sizing: border-box;
}

.sub-search-form {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.sub-search-input-wrapper {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.sub-search-icon {
  position: absolute;
  left: 0.85rem;
  width: 16px;
  height: 16px;
  color: var(--accent-gold-primary);
  pointer-events: none;
  flex-shrink: 0;
}

.sub-search-input {
  width: 100%;
  padding: 0.55rem 0.85rem 0.55rem 2.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(209, 165, 104, 0.3);
  border-radius: 30px;
  color: #FFFFFF;
  font-size: 0.82rem;
  outline: none;
  transition: all var(--transition-fast);
  box-sizing: border-box;
  text-overflow: ellipsis;
}

.sub-search-input:focus {
  border-color: var(--accent-gold-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(209, 165, 104, 0.3);
}

.sub-search-input::placeholder {
  color: rgba(244, 241, 234, 0.5);
  font-size: 0.8rem;
  text-overflow: ellipsis;
}

.sub-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.15rem;
  background: linear-gradient(135deg, #F5D7A6 0%, #D1A568 50%, #B88B4A 100%);
  border: 1px solid #F5D7A6;
  border-radius: 30px;
  color: #000000 !important;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(209, 165, 104, 0.6);
}

.sub-search-btn span {
  color: #000000 !important;
  font-weight: 900;
}

.sub-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(209, 165, 104, 0.6);
}

.country-selector-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  color: var(--text-light-headline);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
}

.country-selector-btn:hover {
  border-color: var(--accent-gold-primary);
  color: var(--accent-gold-primary);
}

.country-selector-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light-headline);
  padding: 0.5rem;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-dark-secondary);
  border-left: 1px solid var(--border-gold-thin);
  z-index: 1500;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: right var(--transition-smooth);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--text-light-headline);
  font-size: 1.5rem;
}

/* Scroll margin fix for smooth scrolling under fixed header */
section[id] {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

/* ==========================================================================
   2. HERO CAROUSEL SECTION (3 Luxury Slides)
   ========================================================================== */
.hero-carousel-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 90vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}

.hero-slide:nth-child(1) {
  background-position: center top;
}

.hero-slide:nth-child(2) {
  background-position: center top;
}

.hero-slide:nth-child(3) {
  background-position: center center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0A0A0C 0%, rgba(10, 10, 12, 0.82) 45%, rgba(10, 10, 12, 0.25) 75%, rgba(10, 10, 12, 0) 100%);
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 3;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-headline {
  font-family: var(--font-serif-luxury);
  font-size: 3.6rem;
  line-height: 1.15;
  font-weight: 500;
  color: var(--text-light-headline);
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero-subtext {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-light-body);
  max-width: 540px;
  margin-bottom: 2.75rem;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Hero Carousel Controls & Indicators */
.hero-carousel-prev,
.hero-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(10, 10, 12, 0.6);
  border: 1px solid rgba(209, 165, 104, 0.4);
  color: var(--accent-gold-primary);
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.hero-carousel-prev:hover,
.hero-carousel-next:hover {
  background: var(--accent-gold-primary);
  color: #000;
  box-shadow: 0 0 20px rgba(209, 165, 104, 0.6);
}

.hero-carousel-prev { left: 2rem; }
.hero-carousel-next { right: 2rem; }

.hero-carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.65rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--accent-gold-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--accent-gold-primary);
  width: 28px;
  border-radius: 12px;
}

/* ==========================================================================
   3. PREMIUM FEATURE STRIP
   ========================================================================== */
.feature-strip-section {
  background-color: var(--bg-dark-secondary);
  border-top: 1px solid var(--border-gold-thin);
  border-bottom: 1px solid var(--border-gold-thin);
  padding: 2.25rem 0;
  position: relative;
  z-index: 5;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

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

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(209, 165, 104, 0.08);
  border: 1px solid var(--border-gold-thin);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-box svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-gold-primary);
  fill: none;
}

.feature-text-content {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light-headline);
  margin-bottom: 0.2rem;
}

.feature-subtitle {
  font-size: 0.85rem;
  color: var(--text-light-body);
}

/* ==========================================================================
   CIRCULAR CATEGORY AVATARS STRIP
   ========================================================================== */
.category-avatars-section {
  padding: 3.5rem 0 2.5rem;
  background-color: var(--bg-dark-primary);
  border-bottom: 1px solid var(--border-dark);
}

.category-avatars-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.25rem;
  flex-wrap: wrap;
}

.category-avatar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  width: 120px;
}

.category-avatar-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--accent-gold-primary), rgba(209, 165, 104, 0.2));
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.category-avatar-card:hover .category-avatar-circle {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 35px rgba(209, 165, 104, 0.4);
  background: linear-gradient(135deg, var(--accent-gold-hover), var(--accent-gold-primary));
}

.category-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: brightness(0.92);
  transition: filter var(--transition-fast), transform var(--transition-smooth);
}

.category-avatar-card:hover .category-avatar-img {
  filter: brightness(1.1);
  transform: scale(1.08);
}

.category-avatar-title {
  font-family: var(--font-serif-luxury);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light-headline);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  transition: color var(--transition-fast);
}

.category-avatar-card:hover .category-avatar-title {
  color: var(--accent-gold-primary);
}

/* ==========================================================================
   PROMOTIONAL EDITORIAL LUXURY BANNER
   ========================================================================== */
.promo-banner-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.85) 45%, rgba(10, 10, 12, 0.4) 80%, rgba(10, 10, 12, 0.2) 100%),
              url('../assets/images/promo_lady_model.jpg') no-repeat center center / cover;
  border-top: 1px solid var(--border-gold-thin);
  border-bottom: 1px solid var(--border-gold-thin);
  overflow: hidden;
}

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

.promo-banner-content {
  position: relative;
  z-index: 2;
}

.promo-banner-headline {
  font-family: var(--font-serif-luxury);
  font-size: 3rem;
  line-height: 1.15;
  color: var(--text-light-headline);
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

.promo-banner-subtext {
  font-size: 1.05rem;
  color: var(--text-light-body);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.promo-banner-visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-gold-thin);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.promo-banner-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

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

.promo-banner-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-gold-primary);
  color: #0E0E10;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 2px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ==========================================================================
   INSTAGRAM & REELS SHORT VIDEOS SHOWCASE
   ========================================================================== */
.zenvy-reels-section {
  padding: 5rem 0;
  background: var(--bg-dark-primary);
  border-top: 1px solid var(--border-gold-thin);
  border-bottom: 1px solid var(--border-gold-thin);
  overflow: hidden;
}

.reels-scroll-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0.5rem 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reels-scroll-container::-webkit-scrollbar {
  display: none;
}

/* ==========================================================================
   DEPARTMENT SHOWCASE 2-ROW HORIZONTAL AUTO-SLIDING GRID
   ========================================================================== */
.department-showcase-slider {
  display: grid !important;
  grid-template-rows: repeat(2, auto) !important;
  grid-auto-flow: column !important;
  grid-auto-columns: minmax(320px, 350px) !important;
  gap: 1.5rem !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  padding-bottom: 1.25rem !important;
  -webkit-overflow-scrolling: touch;
}

.department-showcase-slider::-webkit-scrollbar {
  display: none !important;
}

.department-showcase-slider .product-card {
  scroll-snap-align: start !important;
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .department-showcase-slider {
    grid-auto-columns: minmax(290px, 310px) !important;
    gap: 1rem !important;
  }
}

.reel-card {
  flex: 0 0 240px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(209, 165, 104, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s, box-shadow 0.4s;
}

.reel-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-gold-primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 25px rgba(209, 165, 104, 0.4);
}

.reel-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.reel-card:hover .reel-thumbnail {
  transform: scale(1.08);
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
}

.reel-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reel-badge {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(209, 165, 104, 0.4);
  color: var(--accent-gold-primary);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.reel-views {
  font-size: 0.7rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 4px;
}

.reel-play-btn {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(209, 165, 104, 0.85);
  color: #0E0E10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 25px rgba(209, 165, 104, 0.6);
  transition: transform 0.3s, background-color 0.3s;
}

.reel-card:hover .reel-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--accent-gold-primary);
}

.reel-bottom-info {
  margin-top: auto;
}

.reel-title {
  font-family: var(--font-serif-luxury);
  font-size: 1.05rem;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.reel-shop-btn {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold-primary);
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   4. OUR WALLET COLLECTION SECTION
   ========================================================================== */
.wallet-collection-section {
  background-color: var(--bg-light-primary);
  color: var(--text-dark-body);
  padding: 6rem 0;
  position: relative;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-headline-dark {
  font-family: var(--font-serif-luxury);
  font-size: 2.75rem;
  color: var(--text-dark-headline);
  font-weight: 600;
  letter-spacing: 1px;
}

.collection-carousel-wrapper {
  position: relative;
}

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

.product-card {
  background: linear-gradient(180deg, #1A1A1E 0%, #121215 100%);
  border: 1px solid rgba(209, 165, 104, 0.22);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-gold-primary) 50%, transparent 100%);
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(209, 165, 104, 0.7);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 
              0 0 25px rgba(209, 165, 104, 0.35),
              inset 0 0 15px rgba(209, 165, 104, 0.08);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background-color: #121214;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image-box img {
  transform: scale(1.08);
}

.product-info-box {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
  align-items: center;
}

.product-category-title {
  font-family: var(--font-sans-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark-headline);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-view-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark-headline);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition-fast);
}

.product-card:hover .product-view-link {
  color: var(--accent-gold-primary);
}

.carousel-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-dark-headline);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-fast);
}

.carousel-nav-btn:hover {
  background-color: var(--bg-dark-primary);
  color: var(--accent-gold-primary);
  border-color: var(--bg-dark-primary);
}

.carousel-nav-btn.prev {
  left: -24px;
}

.carousel-nav-btn.next {
  right: -24px;
}

/* ==========================================================================
   5. WHY ZENVY / VALUE STRIP
   ========================================================================== */
.why-zenvy-strip {
  background-color: var(--bg-dark-primary);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.why-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.why-strip-item:last-child {
  border-right: none;
}

.why-icon-box {
  margin-bottom: 1rem;
}

.why-icon-box svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-gold-primary);
  fill: none;
}

.why-item-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light-headline);
  margin-bottom: 0.4rem;
}

.why-item-desc {
  font-size: 0.8rem;
  color: var(--text-light-body);
  line-height: 1.4;
}

/* ==========================================================================
   6. CRAFTED IN INDIA SECTION
   ========================================================================== */
.crafted-india-section {
  background-color: var(--bg-light-primary);
  color: var(--text-dark-body);
  padding: 6.5rem 0;
}

.crafted-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.crafted-image-box {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-light);
}

.crafted-image-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.crafted-content-box {
  display: flex;
  flex-direction: column;
}

.crafted-headline {
  font-family: var(--font-serif-luxury);
  font-size: 3rem;
  color: var(--text-dark-headline);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.crafted-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark-body);
  margin-bottom: 3rem;
}

.stats-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.stat-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-icon {
  margin-bottom: 0.5rem;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-gold-primary);
  fill: none;
}

.stat-number {
  font-family: var(--font-serif-luxury);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark-headline);
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark-muted);
}

/* ==========================================================================
   7. GLOBAL MARKETS / EXPORT SECTION
   ========================================================================== */
.global-export-section {
  background-color: var(--bg-dark-primary);
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
}

.global-export-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.global-export-content {
  position: relative;
  z-index: 2;
}

.global-headline {
  font-family: var(--font-serif-luxury);
  font-size: 3rem;
  color: var(--text-light-headline);
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.global-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-light-body);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.global-map-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.global-map-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==========================================================================
   8. FINAL GLOBAL PARTNER CTA SECTION
   ========================================================================== */
.global-partner-cta-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(rgba(14, 14, 16, 0.9), rgba(14, 14, 16, 0.9)),
              radial-gradient(ellipse at center, rgba(140, 90, 50, 0.2) 0%, rgba(10, 10, 12, 1) 100%);
  border-top: 1px solid var(--border-gold-thin);
  border-bottom: 1px solid var(--border-gold-thin);
  text-align: center;
}

.cta-box-center {
  max-width: 800px;
  margin: 0 auto;
}

.cta-headline {
  font-family: var(--font-serif-luxury);
  font-size: 2.5rem;
  color: var(--text-light-headline);
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.25;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

/* ==========================================================================
   9. FOOTER SECTION
   ========================================================================== */
.site-footer {
  background-color: var(--bg-dark-footer);
  color: var(--text-light-body);
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--border-dark);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-brand-bio {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-light-muted);
  margin: 1.25rem 0 1.75rem;
  max-width: 280px;
}

.social-links-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-body);
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  border-color: var(--accent-gold-primary);
  color: var(--accent-gold-primary);
  background-color: rgba(209, 165, 104, 0.1);
  transform: translateY(-2px);
}

.social-icon-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light-headline);
  margin-bottom: 1.5rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  font-size: 0.82rem;
  color: var(--text-light-muted);
}

.footer-links-list a:hover {
  color: var(--accent-gold-primary);
  padding-left: 4px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-light-muted);
}

.contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-gold-primary);
  fill: none;
  flex-shrink: 0;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-light-muted);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--accent-gold-primary);
}

.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(10, 10, 12, 0.9);
  border: 1px solid var(--border-gold-thin);
  color: var(--accent-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: var(--accent-gold-primary);
  color: #000000;
  transform: translateY(-3px);
}

.scroll-top-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* ==========================================================================
   INQUIRY MODAL DIALOG
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--bg-dark-secondary);
  border: 1px solid var(--border-gold-thin);
  width: 90%;
  max-width: 580px;
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  transform: scale(0.95);
  transition: transform var(--transition-fast);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--text-light-muted);
  font-size: 1.5rem;
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--accent-gold-primary);
}

.modal-title {
  font-family: var(--font-serif-luxury);
  font-size: 1.75rem;
  color: var(--text-light-headline);
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-light-body);
  margin-bottom: 1.75rem;
}

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

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

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light-headline);
  font-weight: 600;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  color: var(--text-light-headline);
  font-family: var(--font-sans-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold-primary);
  background-color: rgba(255, 255, 255, 0.07);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

/* Scroll Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Rules */
@media (max-width: 1200px) {
  .hero-headline {
    font-size: 2.8rem;
  }
  .feature-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1rem;
  }
  .collection-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-strip-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .footer-top-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-brand-col {
    grid-column: span 3;
    margin-bottom: 2rem;
  }
}

@media (max-width: 1150px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-image-wrapper {
    justify-content: center;
  }
  .crafted-grid, .global-export-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stats-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .why-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .carousel-nav-btn {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-headline {
    font-size: 2.2rem;
  }
  .section-headline-dark, .crafted-headline, .global-headline, .cta-headline {
    font-size: 2rem;
  }
  .collection-cards-grid {
    grid-template-columns: 1fr;
  }
  .feature-strip-grid {
    grid-template-columns: 1fr;
  }
  .why-strip-grid {
    grid-template-columns: 1fr;
  }
  .why-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1rem;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand-col {
    grid-column: span 1;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   ENHANCED MOBILE RESPONSIVE LAYOUT (2 Products & 3 Categories Side-by-Side)
   ========================================================================== */
/* ==========================================================================
   ENHANCED MOBILE RESPONSIVE LAYOUT (2 Products & 3 Categories Side-by-Side)
   ========================================================================== */
@media (max-width: 768px) {

  /* Mobile Header Luxury Enhancement */
  .site-header {
    padding: 0.55rem 0 !important;
    background: rgba(10, 10, 12, 0.94) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(209, 165, 104, 0.28) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.9) !important;
  }

  /* Mobile Header Sub-Search Bar Strip Fix */
  .header-sub-search-strip {
    margin-top: calc(var(--header-height) + 6px) !important;
    padding: 0.45rem 0.5rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .header-sub-search-strip .container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .sub-search-form {
    gap: 0.35rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .sub-search-input-wrapper {
    flex: 1 !important;
    min-width: 0 !important;
  }

  .sub-search-input {
    padding: 0.45rem 0.6rem 0.45rem 2.1rem !important;
    font-size: 0.75rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .sub-search-icon {
    left: 0.65rem !important;
    width: 14px !important;
    height: 14px !important;
  }

  .sub-search-btn {
    padding: 0.45rem 0.85rem !important;
    background: linear-gradient(135deg, #F5D7A6 0%, #D1A568 50%, #B88B4A 100%) !important;
    color: #000000 !important;
    font-weight: 800 !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.8px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 3px 12px rgba(209, 165, 104, 0.7) !important;
  }

  .sub-search-btn span {
    color: #000000 !important;
    font-weight: 900 !important;
  }

  .header-container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }

  .brand-logo {
    font-size: 1rem !important;
    gap: 0.25rem !important;
    letter-spacing: 1px !important;
  }

  .site-brand-logo-img {
    height: 28px !important;
  }

  .logo-monogram-svg {
    width: 24px !important;
    height: 24px !important;
  }

  .header-actions {
    gap: 0.25rem !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Compact Country & Currency Selector Button on Mobile */
  .country-selector-btn {
    padding: 0.35rem 0.4rem !important;
    font-size: 0.65rem !important;
    gap: 0.15rem !important;
    letter-spacing: 0.2px !important;
  }

  /* Hide bulky INQUIRY button on top header bar in mobile view */
  .header-actions .trigger-inquiry {
    display: none !important;
  }

  /* Hamburger Menu Toggle Icon */
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.35rem !important;
    margin-left: 0.15rem !important;
    color: var(--accent-gold-primary) !important;
  }

  /* Reduce blank white space & top/bottom section padding */
  .wallet-collection-section,
  #categories,
  #about,
  #executive-gear,
  #bestsellers {
    padding: 2rem 0 !important;
  }

  /* Mobile Hero Section Fix - Full Banner & Features Below */
  .hero-carousel-section,
  .hero-carousel-container {
    aspect-ratio: auto !important;
    min-height: 480px !important;
    height: 480px !important;
    position: relative !important;
  }

  .hero-slide {
    aspect-ratio: auto !important;
    min-height: 480px !important;
    height: 480px !important;
    padding: calc(var(--header-height) + 1rem) 1rem 3.5rem 1rem !important;
    display: flex !important;
    align-items: flex-end !important;
  }

  .hero-slide:nth-child(1) {
    background-position: center top !important;
    background-size: cover !important;
  }

  .hero-slide:nth-child(2) {
    background-position: center top !important;
    background-size: cover !important;
  }

  .hero-slide:nth-child(3) {
    background-position: center center !important;
    background-size: cover !important;
  }

  .hero-slide-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 40%, rgba(10,10,12,0.85) 75%, rgba(10,10,12,0.98) 100%) !important;
  }

  .hero-content-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-bottom: 0.5rem !important;
  }

  .hero-headline {
    font-size: 1.65rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.35rem !important;
    letter-spacing: 0.5px !important;
    color: #FFFFFF !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.95) !important;
    text-align: center !important;
  }

  .hero-subtext {
    font-size: 0.85rem !important;
    line-height: 1.35 !important;
    margin-bottom: 1rem !important;
    max-width: 100% !important;
    color: rgba(244, 241, 234, 0.95) !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.95) !important;
    text-align: center !important;
  }

  .hero-cta-group {
    justify-content: center !important;
    width: 100% !important;
  }

  .hero-cta-group .btn-gold-filled {
    width: 100% !important;
    max-width: 240px !important;
    justify-content: center !important;
    padding: 0.65rem 1.2rem !important;
    font-size: 0.75rem !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.9) !important;
  }

  .hero-carousel-dots {
    bottom: 1.2rem !important;
  }

  /* Premium Feature Strip Section on Mobile */
  .feature-strip-section {
    padding: 1.5rem 0.75rem !important;
    background-color: var(--bg-dark-secondary) !important;
    border-top: 1px solid var(--border-gold-thin) !important;
    border-bottom: 1px solid var(--border-gold-thin) !important;
  }

  .feature-strip-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem 0.5rem !important;
    text-align: center !important;
  }

  .feature-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.35rem !important;
    text-align: center !important;
  }

  /* Mobile Promo Editorial Banner - 16:9 Aspect Ratio Fix */
  .promo-banner-section {
    aspect-ratio: 16 / 9 !important;
    min-height: auto !important;
    height: auto !important;
    padding: 2rem 0.5rem 0.85rem 0.5rem !important;
    display: flex !important;
    align-items: flex-end !important;
    background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.2) 35%, rgba(10,10,12,0.85) 70%, rgba(10,10,12,0.98) 100%),
                url('../assets/images/promo_lady_model.jpg') no-repeat center top / cover !important;
  }

  .promo-banner-grid {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
    text-align: center !important;
    width: 100% !important;
  }

  .promo-banner-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 0.5rem !important;
  }

  .promo-banner-headline {
    font-size: 1.15rem !important;
    line-height: 1.15 !important;
    margin-bottom: 0.2rem !important;
    letter-spacing: 0.5px !important;
    color: #FFFFFF !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9) !important;
    text-align: center !important;
  }

  .promo-banner-subtext {
    font-size: 0.72rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.55rem !important;
    max-width: 100% !important;
    color: rgba(244, 241, 234, 0.9) !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.9) !important;
    text-align: center !important;
  }

  .promo-banner-section .btn-gold-filled {
    width: 100% !important;
    max-width: 200px !important;
    justify-content: center !important;
    padding: 0.45rem 1rem !important;
    font-size: 0.68rem !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.8) !important;
  }

  .promo-banner-visual {
    display: none !important;
  }

  .container {
    padding-left: 0.6rem !important;
    padding-right: 0.6rem !important;
  }

  .section-header-center {
    margin: 0 auto 1.25rem !important;
  }

  /* Single-Line Compact Section Headlines */
  .section-headline-dark,
  .crafted-headline,
  .global-headline,
  .cta-headline {
    font-size: 1.35rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-bottom: 0.25rem !important;
    letter-spacing: 0.5px !important;
  }

  .gold-uppercase-label {
    font-size: 0.62rem !important;
    letter-spacing: 1.2px !important;
    margin-bottom: 0.2rem !important;
  }

  .gold-divider {
    margin: 0.3rem auto 0 !important;
  }

  /* 1. Category Avatars Strip: Single Horizontal Line Flex Strip */
  .category-avatars-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 0.85rem !important;
    padding: 0.5rem 0.25rem 1rem !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch;
  }

  .category-avatars-grid::-webkit-scrollbar {
    display: none !important;
  }

  .category-avatar-card {
    flex: 0 0 95px !important;
    width: 95px !important;
    padding: 0.4rem 0.1rem !important;
    scroll-snap-align: start !important;
    text-align: center !important;
  }

  .category-avatar-circle {
    width: 68px !important;
    height: 68px !important;
    margin: 0 auto 0.35rem !important;
  }

  .category-avatar-title {
    font-size: 0.65rem !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
  }

  /* 2. Product Grids: Square-Shaped 2-Column Mobile Grid Fixed to Edges */
  .collection-cards-grid,
  #featured div[style*="grid-template-columns"],
  #bestsellers div[style*="grid-template-columns"],
  #executive-gear div[style*="grid-template-columns"],
  .products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }

  .product-card {
    padding: 0.55rem !important;
    border-radius: 6px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }

  /* Larger Square Image Box (1:1 Aspect Ratio) */
  .product-card div[style*="height: 250px"],
  .product-card div[style*="height:250px"],
  .product-image-box {
    aspect-ratio: 1 / 1 !important;
    height: 155px !important;
    width: 100% !important;
    border-radius: 4px !important;
    overflow: hidden !important;
  }

  .product-card div[style*="padding: 1.5rem"] {
    padding: 0.45rem 0 0 0 !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }

  .product-card span[style*="font-size: 0.7rem"] {
    font-size: 0.58rem !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 0.1rem !important;
  }

  .product-card h3 {
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.2rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Hide lengthy paragraph text on small mobile cards */
  .product-card p {
    display: none !important;
  }

  .product-card div[style*="margin-bottom: 1.25rem"] {
    margin-bottom: 0.25rem !important;
  }

  .product-card span[style*="font-size: 1.4rem"],
  .product-card div[style*="font-size: 1.4rem"],
  .product-card span[style*="font-size: 1.35rem"] {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
  }

  .product-card .btn-gold-outline,
  .product-card .btn-gold-filled {
    padding: 0.35rem 0.15rem !important;
    font-size: 0.55rem !important;
    letter-spacing: 0.3px !important;
    border-radius: 2px !important;
  }

  /* 3. Category Showcase Quad Collages in Mobile View */
  #categories > .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* Inner 2x2 Product Quad Collages (Square Boxes Side-by-Side) */
  #categories div[style*="grid-template-columns: 1fr 1fr"] {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
  }

  #categories div[style*="height: 110px"],
  #categories div[style*="height:110px"] {
    aspect-ratio: 1 / 1 !important;
    height: 110px !important;
    width: 100% !important;
    border-radius: 4px !important;
    overflow: hidden !important;
  }

  /* Mobile Responsive Reels Auto-Slide Strip */
  .reels-scroll-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 0.85rem !important;
    padding: 0.5rem 0.25rem 1rem !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch;
  }

  .reel-card {
    flex: 0 0 175px !important;
    height: 300px !important;
    border-radius: 8px !important;
  }

  .reel-title {
    font-size: 0.85rem !important;
    line-height: 1.2 !important;
  }

  body {
    padding-bottom: 64px !important;
  }

  /* Glossy Glassmorphism Bottom Dock Bar */
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 64px !important;
    background: linear-gradient(180deg, rgba(28, 28, 35, 0.96) 0%, rgba(12, 12, 15, 0.98) 100%) !important;
    backdrop-filter: blur(22px) saturation(180%) !important;
    -webkit-backdrop-filter: blur(22px) saturation(180%) !important;
    border-top: 1px solid rgba(209, 165, 104, 0.45) !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
    z-index: 1400 !important;
    align-items: center !important;
    justify-content: space-around !important;
    padding: 0 0.25rem !important;
  }

  .mobile-bottom-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
    color: rgba(244, 241, 234, 0.65) !important;
    text-decoration: none !important;
    background: none !important;
    border: none !important;
    padding: 6px 0 !important;
    flex: 1 !important;
    font-size: 0.62rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    position: relative !important;
  }

  /* Elevated Floating Action Search Button (FAB) */
  .mobile-search-fab {
    transform: translateY(-16px) !important;
  }

  .mobile-search-fab .fab-circle {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #F5D7A6 0%, #D1A568 50%, #9E743B 100%) !important;
    color: #0E0E10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 25px rgba(209, 165, 104, 0.7), 0 0 0 5px rgba(14, 14, 16, 0.96) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  }

  .mobile-search-fab .fab-circle .mobile-bottom-icon {
    width: 22px !important;
    height: 22px !important;
    color: #0E0E10 !important;
    stroke-width: 2.5px !important;
  }

  .mobile-search-fab span {
    color: var(--accent-gold-primary) !important;
    font-weight: 700 !important;
    margin-top: 2px !important;
    letter-spacing: 0.8px !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9) !important;
  }

  .mobile-search-fab:active .fab-circle,
  .mobile-search-fab:hover .fab-circle {
    transform: scale(1.08) !important;
    box-shadow: 0 12px 30px rgba(209, 165, 104, 0.9), 0 0 0 5px rgba(14, 14, 16, 0.96) !important;
  }

  .mobile-bottom-icon {
    width: 20px !important;
    height: 20px !important;
    transition: transform 0.25s ease, color 0.25s ease !important;
  }

  .mobile-bottom-item:hover,
  .mobile-bottom-item.active {
    color: var(--accent-gold-primary) !important;
  }

  .mobile-bottom-item.active .mobile-bottom-icon {
    transform: translateY(-2px) scale(1.1) !important;
    color: var(--accent-gold-primary) !important;
    filter: drop-shadow(0 2px 8px rgba(209, 165, 104, 0.6)) !important;
  }
}

/* Mobile App Bottom Dock Base Styles */
.mobile-bottom-nav {
  display: none;
}

.search-tag-pill {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(209, 165, 104, 0.3);
  border-radius: 20px;
  color: #F4F1EA;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.search-tag-pill:hover {
  background: var(--accent-gold-primary);
  color: #000;
}

/* ==========================================================================
   MOBILE CATEGORY SIDEBAR DRAWER STYLING
   ========================================================================== */
.category-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1550;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.category-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-category-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: #141417;
  border-right: 1px solid rgba(209, 165, 104, 0.4);
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.95);
  z-index: 1600;
  padding: 1.5rem 1.25rem 5rem;
  display: flex;
  flex-direction: column;
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-category-drawer.active {
  left: 0;
}

.category-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-drawer-title {
  font-family: var(--font-serif-luxury);
  font-size: 1.15rem;
  color: var(--accent-gold-primary);
  letter-spacing: 1.5px;
  margin: 0;
}

.category-drawer-close {
  background: none;
  border: none;
  color: var(--text-light-headline);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.25rem;
  transition: color 0.2s ease;
}

.category-drawer-close:hover {
  color: var(--accent-gold-primary);
}

.category-drawer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-drawer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  color: #F4F1EA;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.category-drawer-item:hover,
.category-drawer-item:active {
  background: rgba(209, 165, 104, 0.15);
  border-color: var(--accent-gold-primary);
  color: var(--accent-gold-primary);
  transform: translateX(4px);
}

.cat-item-count {
  font-size: 0.72rem;
  color: var(--accent-gold-primary);
  background: rgba(209, 165, 104, 0.18);
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-weight: 600;
}

/* ==========================================================================
   CUSTOMER AUTH PORTAL TABS
   ========================================================================== */
.auth-tab-btn {
  background: none;
  border: none;
  padding: 0.65rem 1rem;
  color: var(--text-light-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.auth-tab-btn.active,
.auth-tab-btn:hover {
  background: var(--accent-gold-primary);
  color: #000000;
  box-shadow: 0 4px 15px rgba(209, 165, 104, 0.4);
}

/* ==========================================================================
   MOBILE 2-COLUMN SIDE-BY-SIDE PRODUCT GRID
   ========================================================================== */
@media (max-width: 768px) {
  .products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
  }

  .products-grid .product-card {
    border-radius: 6px !important;
  }

  .products-grid .product-card > div:first-child {
    height: 160px !important;
  }

  .products-grid .product-card > div:last-child {
    padding: 0.75rem 0.6rem !important;
  }

  .products-grid .product-card h3 {
    font-size: 0.82rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.35rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 2.1rem !important;
  }

  .products-grid .product-card p {
    display: none !important; /* Hide long paragraph text on 2-column mobile cards */
  }

  .products-grid .product-card div[style*="font-size: 1.4rem"],
  .products-grid .product-card span[style*="font-size: 1.4rem"] {
    font-size: 0.95rem !important;
  }

  .products-grid .product-card div[style*="display: flex; gap: 0.5rem"],
  .products-grid .product-card div[style*="display: grid; grid-template-columns: 1fr 1fr"] {
    gap: 0.3rem !important;
  }

  .products-grid .product-card a.btn-gold-outline,
  .products-grid .product-card button.btn-gold-filled,
  .products-grid .product-card a.btn-gold-filled {
    padding: 0.45rem 0.2rem !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.3px !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Cart Mobile Responsive Layout */
  .cart-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .cart-header-title-wrapper {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.8rem !important;
  }

  .cart-desktop-table-wrapper {
    display: none !important;
  }

  .cart-mobile-list {
    display: flex !important;
  }

  /* Checkout Page Mobile Responsive Layout */
  .checkout-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .form-field-row {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }

  .form-field-full {
    grid-column: span 1 !important;
  }

  .checkout-card-box {
    padding: 1.25rem 1rem !important;
  }

  /* Contact Page Mobile Responsive Layout */
  .contact-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .contact-card-box {
    padding: 1.5rem 1.2rem !important;
  }

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

/* ==========================================================================
   LEFT-SIDE VERTICAL FULL-COLOR SOCIAL MEDIA STACK (FB & INSTAGRAM UP-DOWN)
   ========================================================================== */
.sticky-social-widget-left {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 995;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.left-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.left-social-btn.fb-btn {
  background: #1877F2;
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.left-social-btn.insta-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 16px rgba(220, 39, 67, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.left-social-btn:hover {
  transform: scale(1.12) translateY(-2px);
}

.sticky-whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 995;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.sticky-whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: pulseWa 2s infinite;
}

@keyframes pulseWa {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

.sticky-whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
  .sticky-social-widget-left {
    bottom: 80px;
    left: 14px;
    gap: 8px;
  }
  .left-social-btn {
    width: 36px;
    height: 36px;
  }
  .left-social-btn svg {
    width: 16px;
    height: 16px;
  }
  .sticky-whatsapp-btn {
    bottom: 80px;
    right: 14px;
    width: 46px;
    height: 46px;
  }
  .sticky-whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
}
