/*  
Theme Name: VELLOR Haute Atelier  
Theme URI: https://vellor-atelier.com  
Author: VELLOR Haute Atelier  
Version: 1.0.1  
Description: Handcrafted Pakistani footwear and luxury sneaker atelier WordPress theme with 3D scrollytelling motion canvas and full WooCommerce integration.  
Text Domain: vellor-atelier  
*/  
/* ==========================================================================
   VELLOR HAUTE ATELIER | LUXURY FOOTWEAR DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Pure White Luxury Atelier Color Palette */
  --bg-black: #ffffff; /* Clean pure white background */
  --bg-charcoal: #faf9f6; /* Soft warm secondary surface */
  --bg-surface: #ffffff; /* Card / container surface */
  --bg-surface-elevated: #ffffff;
  --bg-canvas-tone: #ffffff; /* Canvas container backdrop */
  
  --gold-primary: #967634; /* Rich royal gold */
  --gold-light: #c5a059;
  --gold-dark: #6e5420;
  --gold-glow: rgba(197, 160, 89, 0.28);
  
  --text-pure: #0f1012; /* Deep luxury obsidian */
  --text-main: #24252a; /* Sharp readable dark charcoal */
  --text-muted: #64656c; /* Elegant muted tone */
  --text-dark: #0f1012;
  --text-dark-muted: #525359;
  
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-active: rgba(197, 160, 89, 0.5);
  --border-gold: #c5a059;
  --glass-nav: rgba(255, 255, 255, 0.96);
  --glass-card: rgba(255, 255, 255, 0.95);
  
  /* Shadows tailored for pure white luxury aesthetic */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.09);
  --shadow-gold: 0 8px 30px rgba(197, 160, 89, 0.2);

  /* Typography */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.25s;
  --duration-normal: 0.4s;
  --duration-slow: 0.7s;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  overflow-x: hidden;
  background-color: var(--bg-black);
  line-height: 1.6;
}

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

button, input, select {
  font-family: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */

.announcement-bar {
  background: #ffffff;
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 1.5rem;
  text-align: center;
  color: #7a5e24;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  position: relative;
  z-index: 101;
}

.announcement-bar .pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--gold-light);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 10px var(--gold-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.top-bar-right {
  display: flex;
  gap: 1.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.top-bar-right span {
  cursor: pointer;
  transition: color var(--duration-fast);
}

.top-bar-right span:hover {
  color: var(--gold-primary);
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--glass-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--gold-light); /* Golden bottom border */
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.12);
  z-index: 100;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border-bottom: 2px solid var(--gold-light);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--duration-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--duration-normal) var(--ease-out-expo);
}

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

.nav-link:hover::after {
  width: 100%;
}

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

.navbar-logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  transition: transform var(--duration-fast), filter var(--duration-fast);
}

.brand-logo:hover .navbar-logo-img {
  transform: scale(1.04);
}

.footer-brand-wrap {
  display: inline-block;
}

.footer-logo-img {
  height: 58px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  background: #ffffff;
  padding: 4px;
  border: 1px solid var(--border-active);
}

.brand-logo .logo-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1;
  background: linear-gradient(135deg, #0f1012 0%, #967634 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-logo .logo-subtitle {
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-top: 3px;
  font-weight: 600;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.currency-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.72rem;
}

.currency-btn.active {
  color: var(--gold-primary);
  font-weight: 700;
}

.nav-icon-btn {
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  transition: color var(--duration-fast);
}

.nav-icon-btn:hover {
  color: var(--gold-primary);
}

.wishlist-count-badge, .cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-primary);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

/* Mobile Nav Hamburger Button (Off-canvas trigger) */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 3px;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  z-index: 105;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-pure);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-btn:hover span {
  background-color: var(--gold-primary);
}

/* Mobile Off-Canvas Drawer Backdrop */
.mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 16, 18, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out-expo), visibility 0.35s;
}

.mobile-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Off-Canvas Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 82vw;
  max-width: 340px;
  height: 100vh;
  background: #ffffff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  box-shadow: 8px 0 35px rgba(0, 0, 0, 0.18);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  border-right: 1px solid rgba(197, 160, 89, 0.25);
}

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

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.4rem 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.drawer-brand {
  display: flex;
  flex-direction: column;
}

.drawer-brand .logo-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--text-pure);
  background: linear-gradient(135deg, #0f1012 0%, #967634 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.drawer-brand .logo-subtitle {
  font-size: 0.52rem;
  letter-spacing: 0.32em;
  color: var(--gold-primary);
  font-weight: 600;
  margin-top: 2px;
}

.mobile-drawer-close {
  background: #faf8f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-main);
  font-size: 1.15rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  background: var(--gold-primary);
  color: #fff;
  border-color: var(--gold-primary);
}

.mobile-drawer-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-drawer-links li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-main);
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-nav-link span {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
}

.mobile-nav-link:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.mobile-drawer-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.drawer-perk {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 500;
}

.drawer-perk .perk-gold-dot {
  color: var(--gold-primary);
  font-size: 0.82rem;
}

/* ==========================================================================
   SCROLLYTELLING HERO SECTION (EZGIF 90-FRAME CANVAS ENGINE)
   ========================================================================== */

.scrolly-container {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 380vh; /* Smooth, controlled scroll distance for frame scrubbing */
  background-color: var(--bg-canvas-tone);
  margin: 0;
  padding: 0;
}

.scrolly-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  overflow: hidden;
  background-color: var(--bg-canvas-tone);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

#hero-video, #hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
  background-color: var(--bg-canvas-tone);
}

/* Luxury Golden Cover Words Sequence */
.hero-words-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-word-item {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 10vw, 8.8rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  margin: 0;
  padding: 0 1rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo), visibility 0.6s;
  will-change: opacity, transform;
  user-select: none;
  
  /* Radiant Luxury Metallic Gold */
  background: linear-gradient(135deg, #a47b2c 0%, #dfb755 35%, #fff2c4 50%, #d4a749 68%, #8b641c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 28px rgba(164, 123, 44, 0.35));
}

.hero-word-item.active {
  opacity: 0.96;
  visibility: visible;
  transform: scale(1) translateY(0);
}

/* Canvas Overlay & Milestone Typography */
.scrolly-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
}

.scrolly-hud-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.frame-telemetry {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(12, 13, 14, 0.65);
  backdrop-filter: blur(12px);
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-pure);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.frame-telemetry .dot {
  width: 7px;
  height: 7px;
  background-color: #38ef7d;
  border-radius: 50%;
  box-shadow: 0 0 8px #38ef7d;
}

.brand-monogram {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--text-dark);
  font-weight: 700;
  opacity: 0.8;
}

/* Dynamic Scroll Story Milestones */
.milestones-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  pointer-events: none;
}

.story-milestone {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo), visibility 0.5s;
  text-align: center;
}

.story-milestone.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.milestone-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.8rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.milestone-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: var(--text-dark);
  letter-spacing: 0.12em;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.milestone-desc {
  max-width: 580px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-dark-muted);
  line-height: 1.6;
  font-weight: 500;
}

.milestone-badge-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.milestone-pill {
  background: rgba(18, 18, 20, 0.85);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--border-active);
  backdrop-filter: blur(8px);
}

/* Bottom HUD & Scroll Indicator */
.scrolly-hud-bottom {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  right: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  pointer-events: auto;
}

.scroll-indicator-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-dark);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.scroll-track {
  width: 80px;
  height: 3px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.scroll-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--text-dark);
  transition: width 0.1s linear;
}

.skip-hero-btn {
  background: #121214;
  color: #ffffff;
  border: 1px solid #121214;
  backdrop-filter: blur(12px);
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--duration-fast);
  box-shadow: var(--shadow-sm);
}

.skip-hero-btn:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Preloader Screen */
.canvas-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-black);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.canvas-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 2px solid var(--border-subtle);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1.5rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.preloader-text {
  font-family: var(--font-serif);
  letter-spacing: 0.2em;
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.preloader-bar-wrap {
  width: 220px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar {
  width: 0%;
  height: 100%;
  background: var(--gold-primary);
  transition: width 0.15s ease-out;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */

section {
  position: relative;
  padding: 6rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

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

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--text-pure);
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==========================================================================
   1B. SIGNATURE CATEGORIES: "WHAT WE OFFER" (3D POP-OUT CIRCLES)
   ========================================================================== */

.categories-circles-section {
  padding: 6.5rem 2rem 5rem;
  background: #ffffff;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.categories-header {
  margin-bottom: 4.5rem;
  text-align: center;
}

.categories-circles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.category-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  padding: 1.5rem 1rem;
  border-radius: 24px;
  transition: transform 0.4s var(--ease-out-expo);
}

/* 3D Circular Portal */
.circle-portal-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-portal-bg {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 40%, #ffffff 0%, #f6f4ef 65%, #eae6dc 100%);
  border: 2px solid rgba(184, 150, 82, 0.35);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.04), inset 0 2px 14px rgba(255, 255, 255, 0.9);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

.circle-halo-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.32) 0%, rgba(212, 175, 55, 0.08) 50%, transparent 72%);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(0.85);
  pointer-events: none;
  z-index: 1;
}

.circle-article-img-wrap {
  position: relative;
  width: 210px;
  height: 210px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: scale(0.96) translateY(0);
  transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1), 
              border-radius 0.55s ease,
              box-shadow 0.65s ease, 
              filter 0.55s ease;
  will-change: transform, border-radius, box-shadow;
}

.circle-badge {
  position: absolute;
  bottom: 0.5rem;
  background: rgba(18, 18, 20, 0.88);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  z-index: 4;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s var(--ease-out-expo), background 0.4s ease;
}

/* ==========================================================================
   THE 3D POP-OUT EFFECT ON HOVER ("ARTICLES COME OUT")
   ========================================================================== */
.category-circle-card:hover .circle-article-img {
  transform: scale(1.24) translateY(-26px) rotate(-3deg);
  border-radius: 26px;
  box-shadow: 0 32px 50px rgba(0, 0, 0, 0.22), 0 12px 24px rgba(184, 150, 82, 0.35);
  filter: brightness(1.04) contrast(1.02);
}

.category-circle-card:hover .circle-portal-bg {
  border-color: var(--gold-primary);
  transform: scale(0.94);
  box-shadow: 0 20px 45px rgba(184, 150, 82, 0.22), inset 0 0 25px rgba(255, 255, 255, 0.95);
}

.category-circle-card:hover .circle-halo-glow {
  opacity: 1;
  transform: scale(1.15);
}

.category-circle-card:hover .circle-badge {
  transform: translateY(6px);
  background: #121214;
  border-color: var(--gold-primary);
  color: #ffffff;
}

/* Category Circle Info Typography */
.category-circle-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 320px;
}

.category-circle-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-pure);
  transition: color 0.3s ease;
}

.category-circle-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.category-circle-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 0.4rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.category-circle-card:hover .category-circle-title {
  color: var(--gold-dark);
}

.category-circle-card:hover .category-circle-action {
  color: var(--gold-primary);
  transform: translateX(4px);
}

@media (max-width: 950px) {
  .categories-circles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
  .circle-portal-wrapper {
    width: 210px;
    height: 210px;
  }
  .circle-portal-bg {
    width: 180px;
    height: 180px;
  }
  .circle-halo-glow {
    width: 200px;
    height: 200px;
  }
  .circle-article-img-wrap {
    width: 170px;
    height: 170px;
  }
  .category-circle-title {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .categories-circles-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .circle-portal-wrapper {
    width: 240px;
    height: 240px;
  }
  .circle-portal-bg {
    width: 200px;
    height: 200px;
  }
  .circle-halo-glow {
    width: 230px;
    height: 230px;
  }
  .circle-article-img-wrap {
    width: 190px;
    height: 190px;
  }
}

/* ==========================================================================
   PAKISTANI SHOES & SNEAKERS CATALOG GRID
   ========================================================================== */

#catalog-section {
  padding-top: 4rem;
  /* Seamless transition with zero hard border line */
  border-top: none;
}

.catalog-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  background: var(--bg-charcoal);
  padding: 1.2rem 1.8rem;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
}

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

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.6rem 1.3rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--duration-fast);
}

.filter-btn:hover {
  border-color: var(--gold-primary);
  color: var(--text-pure);
}

.filter-btn.active {
  background: #121214;
  color: #ffffff;
  border-color: #121214;
  box-shadow: var(--shadow-sm);
}

.sort-search-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.search-input-wrap input {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 1rem 0.55rem 2.4rem;
  border-radius: 25px;
  font-size: 0.82rem;
  color: var(--text-main);
  outline: none;
  width: 190px;
  transition: all var(--duration-fast);
}

.search-input-wrap input:focus {
  width: 240px;
  border-color: var(--gold-primary);
  background: var(--bg-surface-elevated);
}

.search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  pointer-events: none;
}

.sort-select {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.55rem 1.2rem;
  border-radius: 25px;
  font-size: 0.82rem;
  cursor: pointer;
  outline: none;
}

.sort-select:focus {
  border-color: var(--gold-primary);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--duration-normal) var(--ease-out-expo);
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.product-image-wrap {
  position: relative;
  width: 100%;
  padding-top: 86%; /* Compact, refined aspect ratio */
  background: #faf8f5;
  overflow: hidden;
}

.product-image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.badge-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  color: var(--gold-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 16px;
  border: 1px solid rgba(142, 111, 51, 0.25);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-action-wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-subtle);
  color: var(--text-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all var(--duration-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-action-wishlist svg {
  width: 16px;
  height: 16px;
}

.card-action-wishlist:hover,
.card-action-wishlist.active {
  background: #ff4757;
  border-color: #ff4757;
  color: #fff;
  transform: scale(1.08);
}

.quick-view-overlay {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration-normal) var(--ease-out-expo);
  z-index: 2;
}

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

.quick-view-btn {
  background: #121214;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-fast);
  width: 85%;
  text-align: center;
}

.quick-view-btn:hover {
  background: var(--gold-primary);
  color: #ffffff;
}

.product-info {
  padding: 0.95rem 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.67rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.star-rating {
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.7rem;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-pure);
  margin-bottom: 0.35rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.product-summary {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border-subtle);
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.original-price {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.current-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}

.add-to-cart-btn {
  background: #121214;
  color: #ffffff;
  border: 1px solid #121214;
  padding: 0.45rem 0.85rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--duration-fast);
}

.add-to-cart-btn:hover {
  background: var(--gold-primary);
  color: #ffffff;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px var(--gold-glow);
}

/* ==========================================================================
   2B. SCROLL MOTION POSTER: THE SOVEREIGN VELVET LOAFER (EDGE-TO-EDGE)
   ========================================================================== */

.loafer-scrolly-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 380vh; /* Smooth, controlled scroll distance for frame scrubbing */
  background-color: var(--bg-canvas-tone);
  margin: 0;
  padding: 0;
}

.loafer-scrolly-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  overflow: hidden;
  background-color: var(--bg-canvas-tone);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

#loafer-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
  background-color: var(--bg-canvas-tone);
}

.loafer-words-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loafer-word-item {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 10vw, 8.8rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  margin: 0;
  padding: 0 1rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo), visibility 0.6s;
  will-change: opacity, transform;
  user-select: none;
  
  /* Radiant Luxury Metallic Gold */
  background: linear-gradient(135deg, #a47b2c 0%, #dfb755 35%, #fff2c4 50%, #d4a749 68%, #8b641c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 28px rgba(164, 123, 44, 0.35));
}

.loafer-word-item.active {
  opacity: 0.96;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.loafer-hud-top {
  position: absolute;
  top: 2.5rem;
  left: 3rem;
  right: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
  pointer-events: none;
}

.loafer-hud-bottom {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  right: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
  pointer-events: none;
}

.loafer-milestone-pill {
  background: rgba(18, 18, 20, 0.85);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--border-active);
  backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .loafer-hud-top,
  .loafer-hud-bottom {
    left: 1.5rem;
    right: 1.5rem;
  }
  .loafer-milestone-pill {
    display: none;
  }
}

/* ==========================================================================
   SPLIT IN HALF: "FOR HIM" & "FOR HER" SHOWCASE
   ========================================================================== */

.split-section-wrap {
  padding: 6rem 0;
  max-width: 100%;
}

.split-container {
  display: flex;
  width: 100%;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.split-panel {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 5rem 4rem;
  overflow: hidden;
  transition: flex var(--duration-slow) var(--ease-out-expo);
  cursor: pointer;
}

.split-panel:hover {
  flex: 1.25;
}

.split-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform var(--duration-slow) var(--ease-out-expo), filter var(--duration-normal);
  filter: brightness(0.96);
  z-index: 1;
}

.split-panel:hover .split-bg-img {
  transform: scale(1.04);
  filter: brightness(1);
}

.split-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.2) 35%, rgba(255, 255, 255, 0.88) 72%, #ffffff 100%);
  z-index: 2;
  transition: opacity var(--duration-normal);
}

.split-content {
  position: relative;
  z-index: 3;
  max-width: 520px;
  transform: translateY(15px);
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.split-panel:hover .split-content {
  transform: translateY(0);
}

.split-tag {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.split-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--text-pure);
  letter-spacing: 0.06em;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.split-desc {
  font-size: 1rem;
  color: #3b3c42;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.split-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: transparent;
  color: var(--text-pure);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold-primary);
  padding-bottom: 0.4rem;
  cursor: pointer;
  transition: all var(--duration-fast);
}

.split-cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-fast);
}

.split-cta-btn:hover {
  color: var(--gold-primary);
  border-bottom-color: var(--text-pure);
}

.split-cta-btn:hover svg {
  transform: translateX(6px);
}

/* Middle Divider Emblem */
.split-divider-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 6px 24px rgba(197, 160, 89, 0.25);
  font-family: var(--font-serif);
  color: var(--text-pure);
  font-size: 1.25rem;
  font-weight: 700;
  pointer-events: none;
}

/* ==========================================================================
   FEATURED PRODUCTS & ARTISAN VAULT SECTION
   ========================================================================== */

.featured-banner-strip {
  background: linear-gradient(135deg, #f5f3ef 0%, #ebe7e0 100%);
  border: 1px solid var(--border-active);
  border-radius: 24px;
  padding: 3.5rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.featured-banner-strip::after {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.featured-banner-info {
  max-width: 600px;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  margin-bottom: 1.2rem;
}

.featured-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: var(--text-pure);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.featured-banner-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.featured-banner-stats {
  display: flex;
  gap: 2.5rem;
}

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

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   PAKISTANI HERITAGE & CRAFTSMANSHIP SHOWCASE
   ========================================================================== */

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

.craft-card {
  background: var(--bg-charcoal);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.2rem;
  transition: all var(--duration-normal) var(--ease-out-expo);
  position: relative;
}

.craft-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  background: var(--bg-surface);
}

.craft-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.craft-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-pure);
  margin-bottom: 0.8rem;
}

.craft-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SLIDE-OUT CART DRAWER & BACKDROP
   ========================================================================== */

.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.cart-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: var(--bg-charcoal);
  border-left: 1px solid var(--border-active);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-normal) var(--ease-out-expo);
  box-shadow: var(--shadow-lg);
}

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

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

.cart-header-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-pure);
  letter-spacing: 0.08em;
}

.close-cart-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.5rem;
  transition: color var(--duration-fast);
}

.close-cart-btn:hover {
  color: var(--text-pure);
}

/* Free Shipping Meter */
.shipping-meter-wrap {
  background: var(--bg-surface);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.shipping-meter-text {
  font-size: 0.78rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.shipping-meter-text span {
  color: var(--gold-light);
  font-weight: 700;
}

.shipping-meter-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.shipping-meter-fill {
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transition: width var(--duration-normal) ease;
}

.cart-items-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cart-empty-state {
  margin: auto;
  text-align: center;
  color: var(--text-muted);
}

.cart-empty-state svg {
  width: 60px;
  height: 60px;
  color: var(--border-active);
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  gap: 1.2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-pure);
  margin-bottom: 0.3rem;
}

.cart-item-size {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-charcoal);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 0.2rem 0.6rem;
}

.qty-btn {
  background: transparent;
  border: none;
  color: var(--text-pure);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0 0.3rem;
}

.qty-number {
  font-size: 0.8rem;
  font-weight: 600;
}

.remove-item-btn {
  background: transparent;
  border: none;
  color: #ff5252;
  cursor: pointer;
  font-size: 0.75rem;
  text-decoration: underline;
}

.cart-footer {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.coupon-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.coupon-row input {
  flex-grow: 1;
  background: var(--bg-charcoal);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  color: var(--text-pure);
  text-transform: uppercase;
  outline: none;
}

.apply-coupon-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-active);
  color: var(--gold-light);
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-fast);
}

.apply-coupon-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-black);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.cart-summary-row.total-row {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure);
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.8rem;
  margin-top: 0.8rem;
}

.checkout-btn {
  width: 100%;
  background: #121214;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 1.2rem;
  transition: all var(--duration-fast);
}

.checkout-btn:hover {
  background: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

/* ==========================================================================
   QUICK VIEW MODAL & CHECKOUT MODAL
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 12, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.quick-view-card {
  background: #ffffff;
  border: 1.5px solid rgba(197, 160, 89, 0.4);
  border-radius: 24px;
  width: 100%;
  max-width: 960px;
  max-height: 86vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 0 0 35px rgba(197, 160, 89, 0.15);
  transform: scale(0.94);
  transition: transform var(--duration-normal) var(--ease-out-expo);
  overflow: hidden;
}

.modal-backdrop.open .quick-view-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f7f6f2;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #1a1a1c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  font-size: 1.15rem;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-close-btn:hover {
  background: #111113;
  color: #c5a059;
  border-color: #c5a059;
  transform: rotate(90deg) scale(1.06);
}

.modal-gallery {
  position: relative;
  background: #f9f8f5;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.modal-img-container {
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.modal-img-container img {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  transition: transform 0.4s var(--ease-out-expo);
}

.modal-img-container:hover img {
  transform: scale(1.06);
}

.qv-badge-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(197, 160, 89, 0.5);
  color: #7a5e24;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.modal-gallery-badges {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.mg-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #5a5c62;
  background: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.modal-details {
  padding: 2.2rem 2.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 86vh;
  scrollbar-width: thin;
  scrollbar-color: rgba(197, 160, 89, 0.35) transparent;
}

.modal-details::-webkit-scrollbar {
  width: 6px;
}

.modal-details::-webkit-scrollbar-thumb {
  background: rgba(197, 160, 89, 0.35);
  border-radius: 10px;
}

.modal-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.modal-category-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.modal-stock-badge {
  font-size: 0.74rem;
  font-weight: 600;
  color: #1fa453;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(31, 164, 83, 0.08);
  padding: 0.25rem 0.7rem;
  border-radius: 12px;
}

.pulse-dot-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1fa453;
  box-shadow: 0 0 8px #1fa453;
  animation: pulse 2s infinite;
}

.modal-shoe-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.modal-rating-container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #7a5e24;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.modal-meta-sep {
  color: var(--border-active);
}

.modal-craft-guarantee {
  color: #525359;
  font-weight: 500;
  font-size: 0.78rem;
}

.modal-pricing-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  background: #faf9f6;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  margin-bottom: 1.2rem;
}

.modal-current-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #7a5e24;
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
}

.modal-orig-price {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.8rem;
}

.modal-discount-pill {
  background: #967634;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}

.modal-product-summary {
  font-size: 0.88rem;
  color: #42434a;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.modal-materials-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--gold-light);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.3rem;
  font-size: 0.82rem;
  color: #4f5056;
  line-height: 1.5;
}

.modal-materials-box .mm-title {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 4px;
}

.modal-size-block {
  margin-bottom: 1.4rem;
}

.modal-size-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-pure);
  margin-bottom: 0.65rem;
}

.modal-size-guide-link {
  color: var(--gold-primary);
  cursor: pointer;
  text-decoration: underline;
  font-weight: 600;
}

.modal-size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.size-option {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-option:hover {
  border-color: var(--gold-primary);
  background: #faf8f3;
}

.size-option.selected {
  background: #111113;
  color: #ffffff;
  border-color: #111113;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-cta-row {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.3rem;
}

.modal-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: 25px;
  background: #faf9f6;
  padding: 3px 6px;
}

.modal-qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-pure);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.modal-qty-btn:hover {
  background: #e8e6df;
}

.modal-qty-num {
  min-width: 28px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-pure);
}

.modal-add-to-cart-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #121214 0%, #292622 100%);
  color: #ffffff;
  border: 1.5px solid #121214;
  border-radius: 30px;
  padding: 0.9rem 1.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.modal-add-to-cart-btn:hover {
  background: linear-gradient(135deg, #967634 0%, #c5a059 100%);
  border-color: #967634;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.modal-trust-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.mtr-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mtr-item svg {
  color: #7a5e24;
}

/* ==========================================================================
   FLYING ADD TO CART ANIMATION & BADGE BOUNCE
   ========================================================================== */

.flying-cart-orb {
  position: fixed;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  z-index: 9999;
  pointer-events: none;
  border-radius: 50%;
  will-change: transform, opacity;
}

.flying-cart-inner {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5), 0 0 15px rgba(197, 160, 89, 0.3);
  animation: orbSpin 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.flying-thumb {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.flying-cart-badge-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--gold-primary);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ffffff;
}

@keyframes orbSpin {
  0% { transform: scale(0.6) rotate(0deg); }
  50% { transform: scale(1.1) rotate(180deg); }
  100% { transform: scale(0.8) rotate(360deg); }
}

@keyframes cartBadgeBounce {
  0% { transform: scale(1); }
  35% { transform: scale(1.38) rotate(-8deg); box-shadow: 0 0 25px rgba(197, 160, 89, 0.7); }
  65% { transform: scale(0.88) rotate(4deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.cart-badge-bounce {
  animation: cartBadgeBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   PERSISTENT FLOATING SCREEN CART BUTTON
   ========================================================================== */

.floating-screen-cart {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #111113;
  border: 2px solid var(--gold-light);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(197, 160, 89, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 280;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  padding: 0;
  outline: none;
}

.floating-screen-cart:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4), 0 0 35px rgba(197, 160, 89, 0.7);
  border-color: #ffffff;
}

.floating-cart-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: color 0.25s ease;
}

.floating-screen-cart:hover .floating-cart-inner {
  color: #ffffff;
}

.floating-screen-cart .cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  background: var(--gold-light);
  color: #111113;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 6.8rem;
  right: 2.2rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  pointer-events: none;
}

.toast {
  background: rgba(18, 19, 21, 0.95);
  border: 1px solid var(--gold-primary);
  backdrop-filter: blur(12px);
  color: var(--text-pure);
  padding: 0.9rem 1.4rem;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.35s var(--ease-out-expo);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Checkout Success Modal */
.checkout-modal-content {
  background: var(--bg-charcoal);
  border: 1px solid var(--border-active);
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
}

.checkout-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.checkout-icon svg {
  width: 36px;
  height: 36px;
}

/* ==========================================================================
   FOOTER & TRUST BADGES
   ========================================================================== */

.footer-trust-banner {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3rem 2rem;
}

.trust-features {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

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

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-content h4 {
  font-size: 0.95rem;
  color: var(--text-pure);
  margin-bottom: 0.2rem;
}

.trust-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

footer {
  background: #ffffff;
  border-top: 1.5px solid rgba(197, 160, 89, 0.35);
  padding: 5rem 2rem 2.5rem;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-col h5 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-pure);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.footer-col ul li a:hover {
  color: var(--gold-primary);
}

.newsletter-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex-grow: 1;
  background: #faf9f6;
  border: 1px solid var(--border-subtle);
  border-radius: 25px;
  padding: 0.65rem 1.2rem;
  font-size: 0.82rem;
  color: var(--text-pure);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--gold-primary);
}

.newsletter-form button {
  background: #111113;
  color: #ffffff;
  border: none;
  padding: 0 1.2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--duration-fast);
}

.newsletter-form button:hover {
  background: var(--gold-primary);
  color: #ffffff;
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE, TABLET, DESKTOP OPTIMIZATIONS)
   ========================================================================== */

@media (max-width: 1024px) {
  .split-container {
    flex-direction: column;
    min-height: auto;
  }
  .split-panel {
    min-height: 480px;
    padding: 3rem 2rem;
  }
  .split-divider-badge {
    display: none;
  }
  .featured-banner-strip {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .quick-view-card {
    max-width: 760px;
  }
  .modal-img-container {
    height: 280px;
  }
}

@media (max-width: 768px) {
  /* Announcement bar */
  .announcement-bar {
    justify-content: center;
    font-size: 0.68rem;
    padding: 0.4rem 0.8rem;
    letter-spacing: 0.1em;
  }
  .top-bar-right {
    display: none !important;
  }

  /* Header Layout: Centered Logo + 3-line Off-Canvas Button on Left */
  .navbar {
    padding: 0.15rem 0;
  }
  .nav-container {
    display: grid !important;
    grid-template-columns: 44px 1fr 44px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.55rem 1rem !important;
    width: 100% !important;
  }
  .nav-left {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
  }
  .nav-links {
    display: none !important;
  }
  .mobile-menu-btn {
    display: flex !important;
  }
  .brand-logo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
  .brand-logo .logo-title {
    font-size: 1.32rem !important;
    letter-spacing: 0.18em !important;
    line-height: 1 !important;
  }
  .brand-logo .logo-subtitle {
    font-size: 0.48rem !important;
    letter-spacing: 0.28em !important;
    margin-top: 2px !important;
  }
  .nav-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0.4rem !important;
  }
  .currency-toggle {
    display: none !important;
  }

  /* Scrollytelling Motion Posters: 190vh for Effortless Touch Swiping (Not stuck) */
  .scrolly-container,
  .loafer-scrolly-section {
    height: 190vh !important;
    touch-action: pan-y !important;
  }
  .scrolly-sticky,
  .loafer-scrolly-sticky {
    touch-action: pan-y !important;
  }
  #hero-canvas,
  #loafer-canvas {
    touch-action: pan-y !important;
  }
  .hero-words-overlay,
  .loafer-words-overlay {
    padding: 0 0.8rem;
  }
  .hero-word-item,
  .loafer-word-item {
    font-size: clamp(2.2rem, 8.5vw, 4.2rem) !important;
    letter-spacing: 0.18em !important;
    text-indent: 0.18em !important;
  }
  .scrolly-hud-bottom,
  .loafer-hud-bottom {
    padding: 0.5rem 0.8rem !important;
    bottom: 1rem !important;
    gap: 0.5rem !important;
  }
  .scroll-indicator-wrap {
    font-size: 0.65rem !important;
    gap: 0.45rem !important;
  }
  .scroll-track {
    width: 44px !important;
  }
  .skip-hero-btn {
    display: none !important;
  }

  .scrolly-overlay {
    padding: 1.5rem;
  }
  .milestones-container {
    width: 95%;
  }
  .catalog-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .search-input-wrap input {
    width: 100%;
  }

  /* Catalog & Featured Products: One Row Two Columns on Phone Screen */
  .product-grid,
  #product-grid,
  #featured-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
    padding: 0 !important;
  }
  .product-card {
    border-radius: 12px !important;
  }
  .product-img-wrap {
    height: 145px !important;
    padding: 0.75rem !important;
  }
  .product-img {
    max-height: 115px !important;
  }
  .product-badge-flag {
    font-size: 0.55rem !important;
    padding: 0.2rem 0.45rem !important;
    top: 8px !important;
    left: 8px !important;
  }
  .wishlist-btn-card {
    width: 28px !important;
    height: 28px !important;
    top: 8px !important;
    right: 8px !important;
  }
  .wishlist-btn-card svg {
    width: 13px !important;
    height: 13px !important;
  }
  .product-info {
    padding: 0.6rem 0.55rem !important;
  }
  .product-category-tag {
    font-size: 0.55rem !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 2px !important;
  }
  .product-name {
    font-size: 0.8rem !important;
    line-height: 1.25 !important;
    min-height: 2.1em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin-bottom: 0.35rem !important;
  }
  .product-summary {
    display: none !important;
  }
  .product-bottom-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.4rem !important;
    margin-top: 0.35rem !important;
    padding-top: 0.35rem !important;
  }
  .price-block {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
  }
  .current-price {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
  }
  .original-price {
    font-size: 0.68rem !important;
  }
  .add-to-cart-btn {
    width: 100% !important;
    padding: 0.42rem 0.35rem !important;
    font-size: 0.65rem !important;
    justify-content: center !important;
    border-radius: 6px !important;
    letter-spacing: 0.05em !important;
  }
  .quick-view-card {
    grid-template-columns: 1fr;
    max-height: 92vh;
    width: 95%;
    border-radius: 18px;
  }
  .modal-gallery {
    padding: 1.2rem;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .modal-img-container {
    height: 220px;
  }
  .modal-details {
    padding: 1.4rem;
  }
  .modal-shoe-title {
    font-size: 1.35rem;
  }
  .modal-pricing-box {
    padding: 0.6rem 0.9rem;
  }
  .modal-current-price {
    font-size: 1.35rem;
  }
  .modal-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }
  .modal-qty-control {
    justify-content: center;
    width: 120px;
    margin: 0 auto;
  }
  .modal-trust-row {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
