/* =========================================
   KANZIMA COUTURE — MODERN DESIGN SYSTEM
   Version: 2.0 | Consolidated | Mobile-First
   ========================================= */

/* ─── 1. DESIGN TOKENS ─── */
:root {
  --bg-primary: #050505;
  --bg-secondary: #0a0a0a;
  --bg-elevated: #111111;
  --gold: #C5A059;
  --gold-light: #E6DCCA;
  --gold-dark: #8C6E42;
  --text-primary: #E6DCCA;
  --text-secondary: #999999;
  --text-muted: #666666;
  --border-subtle: rgba(197, 160, 89, 0.15);
  --border-gold: rgba(197, 160, 89, 0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 20px rgba(197, 160, 89, 0.15);
  
  --font-display: 'Cinzel', serif;
  --font-body: 'Lato', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --header-height: 70px;
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition-base); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── 3. TYPOGRAPHY ─── */
h1, h2, h3, .h1, .h2, .h3 {
  font-family: var(--font-display);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.2;
  font-weight: 400;
}

h1, .h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2, .h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3, .h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); }

p { color: var(--text-primary); font-size: 1rem; line-height: 1.8; }

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ─── 4. LAYOUT UTILITIES ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section {
  position: relative;
  padding: var(--space-xl) var(--space-sm);
  z-index: 10;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }

/* ─── 5. HEADER & NAV ─── */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: var(--header-height);
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: var(--transition-base);
}

header.scrolled {
  background: rgba(5, 5, 5, 0.98);
  box-shadow: var(--shadow-sm);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img { height: 45px; width: auto; }

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 0.5rem;
  letter-spacing: 3px;
  color: var(--gold-light);
  text-transform: uppercase;
}

.header-needle-gif {
  height: 40px;
  width: auto;
  margin-left: 8px;
  mix-blend-mode: screen;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
  color: var(--text-primary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 2001;
  padding: 5px;
}

.hamburger .bar {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-base);
  border-radius: 1px;
}

.hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: center;
    transition: right var(--transition-base);
  }
  .nav-menu.active { right: 0; }
  .nav-menu ul { flex-direction: column; gap: 30px; align-items: center; }
  .nav-menu a { font-size: 1.3rem; font-family: var(--font-display); }
  .header-needle-gif { height: 30px; }
}

/* ─── 6. HERO SYSTEM ─── */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.85));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 var(--space-sm);
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  margin-bottom: var(--space-sm);
  text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #fff;
  margin-bottom: var(--space-md);
}

.gold-line {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-sm) auto;
}

.hero-sm { min-height: 40vh; }
.hero-md { min-height: 50vh; }
.hero-lg { min-height: 70vh; }
.hero-full { min-height: 100vh; }

@media (min-width: 768px) {
  .hero-sm { min-height: 50vh; }
  .hero-md { min-height: 60vh; }
  .hero-lg { min-height: 80vh; }
}

/* ─── 7. KEN BURNS SLIDER ─── */
.slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  overflow: hidden;
}

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

.slide-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s linear;
}

.slide.active .slide-bg { transform: scale(1.15); }

/* ─── 8. PARTICLES CANVAS ─── */
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

/* ─── 9. CARDS ─── */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  position: relative;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
}

.card-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: var(--space-sm) auto;
}

.corner {
  position: absolute;
  width: 20px; height: 20px;
  border: 1px solid var(--gold);
  transition: all var(--transition-base);
}

.corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.card:hover .corner { width: 30px; height: 30px; }

/* ─── 10. BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color var(--transition-base);
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-base);
  z-index: -1;
}

.btn:hover { color: #000; }
.btn:hover::before { transform: scaleY(1); }

.btn-primary {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.btn-primary::before { background: #000; }
.btn-primary:hover { color: var(--gold); }

.art-deco-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  position: relative;
  transition: var(--transition-base);
}

.art-deco-btn::before,
.art-deco-btn::after {
  content: '';
  width: 8px; height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  transition: var(--transition-base);
  flex-shrink: 0;
}

.art-deco-btn::before { border-right: none; border-top: none; }
.art-deco-btn::after { border-left: none; border-bottom: none; }

.art-deco-btn:hover {
  background: rgba(197, 160, 89, 0.1);
  color: #fff;
}
.art-deco-btn:hover::before,
.art-deco-btn:hover::after { background: var(--gold); }

/* ─── 11. GALLERY ─── */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-sm);
  background: var(--bg-secondary);
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  border-bottom: 1px solid var(--border-subtle);
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--space-sm);
}

.gallery-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
  opacity: 1;
  transition: opacity var(--transition-base);
}

.gallery-item.hidden { opacity: 0; pointer-events: none; position: absolute; }

.gallery-item.reverse { direction: rtl; }
.gallery-item.reverse > * { direction: ltr; }

@media (min-width: 768px) {
  .gallery-item { grid-template-columns: 1fr 1fr; }
}

.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid #333;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.gallery-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-img-wrap:hover img { transform: scale(1.08); }

.gallery-img-wrap .shine {
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(197,160,89,0.15), transparent);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
}

.gallery-img-wrap:hover .shine { left: 150%; }

.gallery-details { padding: var(--space-md); }
.gallery-details h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.gallery-details .subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border: 2px solid var(--gold);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color var(--transition-base);
}
.lightbox-close:hover { color: var(--gold); }

/* ─── 12. PROCESS STEPS ─── */
.step {
  padding: var(--space-lg) var(--space-sm);
}

.step-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: -20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.step-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.step-img-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.step-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.step-img-wrap:hover img { transform: scale(1.03); }

/* ─── 13. SERVICES & TIERS ─── */
.tiers-section {
  background: linear-gradient(to bottom, var(--bg-primary), #0f0f0f);
  border-top: 1px solid #222;
}

.tier-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-base);
}

.tier-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
}

.tier-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.tier-subtitle {
  font-size: 0.85rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: var(--space-sm);
}

.tier-desc {
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.tier-details {
  margin-top: auto;
  border-top: 1px dashed #333;
  padding-top: var(--space-sm);
}

.tier-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.tier-list i { color: var(--gold); font-size: 0.8rem; }

.service-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

/* ─── 14. CONTACT ─── */
.contact-card {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: var(--shadow-md);
}

.contact-card-inner {
  background: var(--bg-secondary);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid var(--border-gold);
  outline: 1px solid var(--border-gold);
  outline-offset: -10px;
  position: relative;
}

.mughal-corner {
  position: absolute;
  width: 40px; height: 40px;
  border: 2px solid var(--gold);
  transition: all var(--transition-base);
}

.mughal-corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.mughal-corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.mughal-corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.mughal-corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.contact-card:hover .mughal-corner { border-color: #fff; box-shadow: 0 0 10px rgba(197,160,89,0.3); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-md) 0;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-info-item i {
  font-size: 1.4rem;
  color: var(--gold);
}

.contact-info-item a {
  color: var(--text-primary);
  border-bottom: 1px dotted var(--gold);
  padding-bottom: 2px;
}
.contact-info-item a:hover { color: var(--gold); }

/* ─── 15. ABOUT STATS ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  transition: transform var(--transition-base);
}

.stat-item:hover { transform: translateY(-8px); }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.philosophy-card {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-gold);
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
  position: relative;
}

/* ─── 16. FAQ ─── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--bg-secondary);
  border-left: 3px solid var(--gold);
  padding: var(--space-md);
  transition: var(--transition-base);
}

.faq-item:hover {
  background: var(--bg-elevated);
  transform: translateX(5px);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  color: var(--gold);
}

.faq-item p { color: var(--text-secondary); font-size: 0.95rem; }

/* ─── 18. FOOTER ─── */
footer {
  background: var(--bg-primary);
  border-top: 1px solid #222;
  padding: var(--space-lg) var(--space-sm);
  text-align: center;
}

.footer-logo { height: 45px; opacity: 0.9; margin-bottom: var(--space-sm); }

.footer-address {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.footer-address strong {
  color: var(--text-primary);
  font-family: var(--font-display);
  letter-spacing: 1px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* ─── 19. WHATSAPP FLOAT ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 55px; height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 10000;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover { transform: scale(1.1); animation: none; }

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ─── 20. PRELOADER ─── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.preloader.hidden { opacity: 0; visibility: hidden; }

.needle-icon {
  width: 40px;
  height: 80px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  animation: needle-bounce 1.2s ease-in-out infinite;
}

@keyframes needle-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

.preloader-text {
  margin-top: var(--space-md);
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 3px;
  font-size: 0.9rem;
}

/* ─── 21. SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.95); }

.reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  transform: translate(0) scale(1);
}

/* ─── 22. BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px; height: 45px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: #000;
}

/* ─── 23. ACCESSIBILITY ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  padding: 8px 16px;
  z-index: 10002;
  font-family: var(--font-display);
  font-size: 0.8rem;
  transition: top var(--transition-base);
}

.skip-link:focus { top: 10px; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── 24. CUSTOM CURSOR ─── */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(197, 160, 89, 0.5);
  transition: width var(--transition-base), height var(--transition-base), background var(--transition-base);
}

body.hovering .cursor-ring {
  width: 55px; height: 55px;
  background: rgba(197, 160, 89, 0.05);
  border-color: var(--gold);
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ─── 25. PRINT ─── */
@media print {
  header, footer, .whatsapp-btn, .back-to-top, .preloader, .cursor-dot, .cursor-ring {
    display: none !important;
  }
  body { background: #fff; color: #000; }
  a { text-decoration: underline; }
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children in grids */
.grid-2 > [data-reveal]:nth-child(2) { transition-delay: 0.15s; }
.grid-2 > [data-reveal]:nth-child(3) { transition-delay: 0.3s; }
.grid-2 > [data-reveal]:nth-child(4) { transition-delay: 0.45s; }

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children in grids */
.grid-2 > [data-reveal]:nth-child(2) { transition-delay: 0.15s; }
.grid-2 > [data-reveal]:nth-child(3) { transition-delay: 0.3s; }
.grid-2 > [data-reveal]:nth-child(4) { transition-delay: 0.45s; }

/* =========================================
   PRELOADER STYLES
   ========================================= */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}
.preloader .needle-icon {
  width: 40px;
  height: 80px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  animation: needleSew 1.2s ease-in-out infinite;
}
.preloader-text {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
@keyframes needleSew {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(-5deg); }
  75% { transform: translateY(10px) rotate(5deg); }
}

/* =========================================
   SKIP LINK (Accessibility)
   ========================================= */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: #000;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 10000;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}

/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 1500;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--gold);
  color: #000;
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(197, 160, 89, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
}
body.hovering .cursor-ring {
  width: 60px;
  height: 60px;
  background: rgba(197, 160, 89, 0.05);
  border-color: var(--gold);
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 10000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulseWhatsApp 2s infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
@keyframes pulseWhatsApp {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* =========================================
   PRODUCT CARD ENHANCEMENTS
   ========================================= */
.product-badge {
  text-transform: capitalize;
}

/* =========================================
   CART ICON FIX
   ========================================= */
.cart-toggle {
  color: var(--gold) !important;
  background: transparent;
  border: 1px solid var(--border-subtle);
}

.cart-toggle i {
  color: var(--gold) !important;
  font-size: 1.3rem;
  display: block;
}

.cart-toggle:hover {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.1);
}

/* Ensure badge is visible when items exist */
.cart-badge {
  background: var(--gold);
  color: #000;
  font-weight: bold;
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -6px;
  right: -6px;
}

/* =========================================
   COMPLETE CART & PRODUCT SYSTEM STYLES
   ========================================= */

/* ─── CART TOGGLE BUTTON ─── */
.cart-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
  color: var(--gold);
}

.cart-toggle:hover {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.1);
}

.cart-toggle i {
  font-size: 1.2rem;
  color: var(--gold);
}

.cart-label-desktop {
  display: none;
}

@media (min-width: 1025px) {
  .cart-label-desktop {
    display: inline;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-left: 6px;
    font-family: var(--font-display);
    color: var(--gold);
  }
  .cart-toggle {
    width: auto;
    padding: 0 14px;
  }
}

/* ─── CART BADGE ─── */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ─── CART OVERLAY ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

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

/* ─── CART SIDEBAR ─── */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-subtle);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.active {
  right: 0;
}

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

.cart-header h3 {
  font-size: 1rem;
  letter-spacing: 2px;
}

.cart-close {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
  font-size: 1rem;
}

.cart-close:hover {
  background: var(--gold);
  color: #000;
}

/* ─── CART BODY ─── */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
}

.cart-empty {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  color: var(--text-muted);
}

.cart-empty i {
  font-size: 3rem;
  color: var(--gold-dark);
  margin-bottom: var(--space-md);
  display: block;
}

/* ─── CART ITEM ─── */
.cart-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  margin-bottom: var(--space-sm);
  transition: var(--transition-base);
}

.cart-item:hover {
  border-color: var(--border-gold);
}

.cart-item-img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

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

.cart-item-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-item-note {
  width: 100%;
  padding: 6px 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  transition: var(--transition-base);
}

.cart-item-note:focus {
  outline: none;
  border-color: var(--gold);
}

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

.cart-item-remove {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: transparent;
  border: 1px solid rgba(255, 50, 50, 0.3);
  color: #ff6666;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition-base);
  border-radius: var(--radius-sm);
}

.cart-item-remove:hover {
  background: rgba(255, 50, 50, 0.1);
  border-color: rgba(255, 50, 50, 0.6);
}

/* ─── CART FOOTER ─── */
.cart-footer {
  padding: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
  flex-shrink: 0;
}

.cart-count {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.cart-count strong {
  color: var(--gold);
}

.btn-send-enquiry {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #000;
  border: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-base);
  border-radius: var(--radius-sm);
}

.btn-send-enquiry:hover {
  background: var(--gold-light);
}

.btn-send-enquiry i {
  font-size: 0.9rem;
}

/* ─── TOAST NOTIFICATION ─── */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-elevated);
  color: var(--gold);
  padding: 12px 28px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 1px;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ─── PRODUCT CARD ─── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-sm);
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.product-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-family: var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 5;
  font-weight: 700;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-img-wrap:hover .product-overlay {
  opacity: 1;
}

.product-quick-view {
  padding: 10px 24px;
  background: var(--gold);
  color: #000;
  border: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-base);
}

.product-quick-view:hover {
  background: var(--gold-light);
}

.product-info {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.7rem;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  flex: 1;
}

.product-price {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.product-price span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.product-stitching-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  padding: 4px 0;
}

.product-stitching-note i {
  font-size: 0.8rem;
  color: var(--gold-dark);
}

.product-purse-note {
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--border-gold);
  padding: 8px 12px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-purse-note i {
  font-size: 0.9rem;
}

.product-actions {
  margin-top: auto;
}

.btn-enquiry {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition-base);
}

.btn-enquiry:hover,
.btn-enquiry.added {
  background: var(--gold);
  color: #000;
}

.btn-enquiry.added {
  pointer-events: none;
}

/* ─── SHOP TOOLBAR ─── */
.shop-toolbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

@media (min-width: 768px) {
  .shop-toolbar {
    flex-direction: row;
    justify-content: space-between;
  }
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.category-chip {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-base);
}

.category-chip:hover,
.category-chip.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197, 160, 89, 0.1);
}

/* ─── PRODUCT MODAL ─── */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
}

.product-modal.active {
  display: flex;
}

.product-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.product-modal-content {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  z-index: 1;
}

@media (min-width: 768px) {
  .product-modal-content {
    grid-template-columns: 1fr 1fr;
  }
}

.product-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.product-modal-close:hover {
  background: var(--gold);
  color: #000;
}

.product-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.product-modal-info {
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
}

.product-modal-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.product-modal-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.product-modal-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.product-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--text-primary);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-subtle);
}

.product-features li i {
  color: var(--gold);
  font-size: 0.7rem;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: var(--space-sm) 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

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

.breadcrumb .sep {
  margin: 0 8px;
  color: var(--gold-dark);
}

/* ─── SOCIAL FLOAT ─── */
.social-float {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1500;
}

.social-float a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  transition: transform var(--transition-base);
}

.social-float a:hover {
  transform: scale(1.1);
}

.social-float .ig { background: #E4405F; }
.social-float .fb { background: #1877F2; }
.social-float .wa { background: #25D366; }

/* ─── SHARE BAR ─── */
.share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-sm) 0;
}

.share-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-right: 4px;
}

.share-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
  font-size: 0.8rem;
}

.share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197, 160, 89, 0.1);
}

/* ─── NEWSLETTER ─── */
.newsletter-section {
  background: linear-gradient(to bottom, var(--bg-primary), #0f0f0f);
  border-top: 1px solid var(--border-subtle);
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-right: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-btn {
  padding: 14px 28px;
  background: var(--gold);
  color: #000;
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--gold-light);
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-input {
    border-right: 1px solid var(--border-subtle);
    border-bottom: none;
  }
}

/* ─── INSTAGRAM SECTION ─── */
.instagram-section {
  border-top: 1px solid var(--border-subtle);
}

.instagram-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.instagram-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

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

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

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.instagram-overlay span {
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
  border-top: 1px solid var(--border-subtle);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title h2 {
  margin-bottom: var(--space-xs);
}

.section-title p {
  color: var(--text-muted);
  font-size: 1rem;
}

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.testimonial-author {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 1px;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── TRUST BADGES ─── */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-sm);
}

@media (min-width: 768px) {
  .trust-badges {
    grid-template-columns: repeat(5, 1fr);
  }
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.trust-badge i {
  font-size: 1.8rem;
  color: var(--gold);
}

.trust-badge span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

.blog-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition-base);
}

.blog-card:hover {
  border-color: var(--border-gold);
}

.blog-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-content {
  padding: var(--space-md);
}

.blog-meta {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-meta i {
  margin-right: 4px;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  transition: var(--transition-base);
}

.blog-read-more:hover {
  color: var(--gold-light);
  gap: 10px;
}

/* ─── INQUIRY BUTTON (Gallery/Services) ─── */
.btn-inquiry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-inquiry:hover {
  background: var(--gold);
  color: #000;
}

/* ─── SCROLLBAR STYLING ─── */
.cart-body::-webkit-scrollbar,
.product-modal-content::-webkit-scrollbar {
  width: 6px;
}

.cart-body::-webkit-scrollbar-track,
.product-modal-content::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

.cart-body::-webkit-scrollbar-thumb,
.product-modal-content::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* ─── HOVER ZOOM UTILITY ─── */
.hover-zoom {
  overflow: hidden;
  transition: transform var(--transition-base);
}

.hover-zoom img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* =========================================
   FAQ STYLES
   ========================================= */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-md) 0;
  transition: var(--transition-base);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color var(--transition-base);
}

.faq-item h3::before {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold-dark);
  transition: transform var(--transition-base), color var(--transition-base);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.faq-item h3:hover {
  color: var(--gold-light);
}

.faq-item h3:hover::before {
  color: var(--gold);
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 36px;
  font-size: 0.95rem;
}

/* FAQ Accordion Active State */
.faq-item.active h3::before {
  content: '−';
  color: var(--gold);
}

/* =========================================
   404 PAGE STYLES
   ========================================= */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.error-code {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 4px;
  margin-bottom: var(--space-sm);
  text-shadow: 0 0 40px rgba(197, 160, 89, 0.2);
}

.error-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.error-desc {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .error-code {
    font-size: 5rem;
  }
}

/* =========================================
   ACCESSIBILITY IMPROVEMENTS
   ========================================= */

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: #000;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1px;
  z-index: 10000;
  transition: top 0.3s;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* =========================================
   PRINT STYLES
   ========================================= */

@media print {
  header,
  footer,
  .back-to-top,
  .whatsapp-btn,
  .social-float,
  .cart-toggle,
  .cart-sidebar,
  .cart-overlay,
  #cart-system,
  .preloader {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
  }

  a {
    color: #000 !important;
    text-decoration: underline !important;
  }

  .card,
  .product-card,
  .testimonial-card,
  .blog-card {
    border: 1px solid #ccc !important;
    break-inside: avoid;
  }
}

/* =========================================
   REDUCED MOTION
   ========================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

/* =========================================
   ADDITIONAL UTILITIES
   ========================================= */

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

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loading-shimmer {
  background: linear-gradient(
    90deg,
    var(--bg-secondary) 25%,
    var(--bg-primary) 50%,
    var(--bg-secondary) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =========================================
   WORK SHOWCASE (on Products page)
   ========================================= */

.work-grid {
  max-width: 1000px;
  margin: 0 auto;
}

.work-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition-base);
}

.work-item:hover {
  border-color: var(--border-gold);
}

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

.work-info {
  padding: var(--space-md);
}

@media (max-width: 768px) {
  .work-item,
  .work-item[style*="direction:rtl"] {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
  }
  .work-item .work-info {
    direction: ltr !important;
  }
  .video-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .video-grid .video-card:last-child {
    grid-column: span 2 !important;
  }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr !important;
  }
  .video-grid .video-card:last-child {
    grid-column: span 1 !important;
  }
}

/* Video hover hide play overlay */
.video-card:hover .video-play-overlay {
  opacity: 0;
}

/* Video playing hide play overlay */
video[data-video]:playing + .video-play-overlay {
  opacity: 0;
}
