/* ══════════════════════════════════════════════════════════════
   MAYAPUR MRIDANGA — Premium Dark-Glass E-commerce Theme
   Version 2.0 | Built with ❤️ in Sri Mayapur Dham
   ══════════════════════════════════════════════════════════════ */

/* ─── Google Fonts ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ─── CSS Custom Properties ──────────────────────────────── */
:root {
  --bg-primary: #1A0F0A;
  --bg-secondary: #2C1A12;
  --bg-card: rgba(212,165,116,0.04);
  --bg-glass: rgba(212,165,116,0.05);
  --bg-glass-strong: rgba(212,165,116,0.08);
  --gold: #d4a574;
  --gold-light: #f0c987;
  --gold-dim: rgba(212,165,116,0.15);
  --text-primary: #f5f5dc;
  --text-secondary: #dcd0c8;
  --text-muted: #8c7b70;
  --border-subtle: rgba(212,165,116,0.15);
  --border-light: rgba(212,165,116,0.25);
  --border-gold: rgba(212,165,116,0.4);
  --success: #4ade80;
  --danger: #ef4444;
  --info: #3b82f6;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50px;
  --shadow-gold: 0 4px 20px rgba(212,165,116,0.4);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── @property for RGB animation ────────────────────────── */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ─── Keyframes ──────────────────────────────────────────── */
@keyframes rgbRotate { to { --angle: 360deg; } }
@keyframes rgbGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,0,0,0.3), 0 0 40px rgba(255,0,0,0.1); }
  33% { box-shadow: 0 0 20px rgba(0,255,0,0.3), 0 0 40px rgba(0,255,0,0.1); }
  66% { box-shadow: 0 0 20px rgba(0,100,255,0.3), 0 0 40px rgba(0,100,255,0.1); }
}
@keyframes headerRgbLine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes cartBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes splashPulse {
  0% { transform: scale(0.5); opacity: 0; filter: blur(10px); }
  60% { transform: scale(1.08); opacity: 1; filter: blur(0); }
  100% { transform: scale(1); opacity: 1; filter: blur(0); }
}
@keyframes splashFadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}
@keyframes glowRing {
  0%, 100% { box-shadow: 0 0 20px rgba(212,165,116,0.3), 0 0 60px rgba(212,165,116,0.1); }
  50% { box-shadow: 0 0 40px rgba(212,165,116,0.6), 0 0 100px rgba(212,165,116,0.2); }
}
@keyframes letterReveal {
  0% { opacity: 0; transform: translateY(20px) scale(0.5); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes slideInRight {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes toastIn { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(120%); opacity: 0; } }
@keyframes successPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════ */
/* SPLASH SCREEN                                              */
/* ═══════════════════════════════════════════════════════════ */
#splash-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at center, #2C1A12 0%, #1A0F0A 40%, #0D0704 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1.5s ease;
}
#splash-screen.fade-out { opacity: 0; pointer-events: none; }
.splash-content { text-align: center; position: relative; }
.splash-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px; border-radius: 50%;
  animation: glowRing 2s ease-in-out infinite;
  pointer-events: none;
}
.splash-logo {
  width: 180px; height: 180px; border-radius: 50%;
  object-fit: cover; position: relative; z-index: 2;
  animation: splashPulse 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  border: 3px solid rgba(212,165,116,0.3);
}
.splash-text {
  margin-top: 24px; font-family: var(--font-heading);
  font-size: 2rem; font-weight: 800; color: var(--text-primary);
  display: flex; justify-content: center; gap: 2px;
}
.splash-text span {
  opacity: 0; display: inline-block;
  animation: letterReveal 0.5s forwards;
}
.splash-text span:nth-child(1) { animation-delay: 0.3s; }
.splash-text span:nth-child(2) { animation-delay: 0.35s; }
.splash-text span:nth-child(3) { animation-delay: 0.4s; }
.splash-text span:nth-child(4) { animation-delay: 0.45s; }
.splash-text span:nth-child(5) { animation-delay: 0.5s; }
.splash-text span:nth-child(6) { animation-delay: 0.55s; }
.splash-text span:nth-child(7) { animation-delay: 0.6s; }
.splash-space { width: 12px; }
.splash-text span:nth-child(9) { animation-delay: 0.7s; }
.splash-text span:nth-child(10) { animation-delay: 0.75s; }
.splash-text span:nth-child(11) { animation-delay: 0.8s; }
.splash-text span:nth-child(12) { animation-delay: 0.85s; }
.splash-text span:nth-child(13) { animation-delay: 0.9s; }
.splash-text span:nth-child(14) { animation-delay: 0.95s; }
.splash-text span:nth-child(15) { animation-delay: 1.0s; }
.splash-text span:nth-child(16) { animation-delay: 1.05s; }
.splash-tagline {
  margin-top: 12px; color: var(--gold); font-size: 0.9rem;
  letter-spacing: 3px; text-transform: uppercase;
  opacity: 0; animation: fadeIn 0.8s 1.2s forwards;
}

/* ═══════════════════════════════════════════════════════════ */
/* HEADER                                                      */
/* ═══════════════════════════════════════════════════════════ */
.mm-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(26, 15, 10, 0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}
.mm-header-rgb-line {
  height: 2px;
  background: linear-gradient(90deg, #ff0000, #ff8800, #ffff00, #00ff00, #0088ff, #8800ff, #ff0000);
  background-size: 200% 100%;
  animation: headerRgbLine 3s linear infinite;
}
.mm-header-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center;
}
.mm-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.mm-logo-img { height: 46px; width: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(212,165,116,0.3); }
.mm-logo-text {
  font-family: var(--font-heading); font-size: 1.35rem;
  color: var(--text-primary); font-weight: 700;
  letter-spacing: -0.5px;
}
.mm-logo-text b { color: var(--gold); }

/* Navigation */
.mm-nav { display: flex; gap: 2rem; margin-left: auto; }
.mm-nav a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 0.95rem; font-weight: 500; position: relative;
  transition: color var(--transition); padding: 4px 0;
}
.mm-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--transition);
}
.mm-nav a:hover, .mm-nav a.active { color: var(--text-primary); }
.mm-nav a:hover::after, .mm-nav a.active::after { transform: scaleX(1); transform-origin: left; }

/* Header Actions */
.mm-header-actions { display: flex; align-items: center; gap: 1rem; margin-left: 2rem; }
.mm-header-btn {
  background: none; border: none; color: var(--text-secondary);
  font-size: 1.2rem; position: relative;
  transition: color var(--transition); padding: 6px;
}
.mm-header-btn:hover { color: var(--gold); }
.mm-cart-count {
  position: absolute; top: -4px; right: -6px;
  background: var(--gold); color: var(--bg-primary);
  font-size: 0.6rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.mm-cart-count.bounce { animation: cartBounce 0.4s ease; }
.mm-currency-select {
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-light);
  color: var(--text-secondary); padding: 5px 8px;
  border-radius: var(--radius-sm); font-size: 0.8rem;
  cursor: pointer; outline: none;
}
.mm-currency-select option { background: var(--bg-secondary); color: var(--text-primary); }
.mm-mobile-menu-btn { display: none; }

/* ═══════════════════════════════════════════════════════════ */
/* SEARCH OVERLAY                                              */
/* ═══════════════════════════════════════════════════════════ */
.mm-search-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(13, 7, 4, 0.95);
  backdrop-filter: blur(30px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 15vh;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.mm-search-overlay.active { opacity: 1; pointer-events: all; }
.mm-search-close {
  position: absolute; top: 30px; right: 30px;
  background: none; border: none; color: var(--text-secondary);
  font-size: 2rem; cursor: pointer;
  transition: color var(--transition);
}
.mm-search-close:hover { color: var(--gold); }
.mm-search-container { width: 90%; max-width: 600px; text-align: center; }
.mm-search-title {
  font-family: var(--font-heading); font-size: 1.5rem;
  color: var(--text-primary); margin-bottom: 24px; font-weight: 600;
}
.mm-search-box {
  position: relative;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: center; padding: 0 20px;
  transition: border-color var(--transition);
}
.mm-search-box:focus-within { border-color: var(--gold); }
.mm-search-box i { color: var(--text-muted); font-size: 1.1rem; }
.mm-search-input {
  flex: 1; background: none; border: none;
  color: var(--text-primary); font-size: 1.1rem;
  padding: 16px 14px; outline: none;
  width: 100%;
}
.mm-search-input::placeholder { color: var(--text-muted); }
.mm-search-results { margin-top: 20px; text-align: left; }
.mm-search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius-md);
  background: var(--bg-glass); cursor: pointer;
  margin-bottom: 8px; transition: background var(--transition);
}
.mm-search-result-item:hover { background: var(--bg-glass-strong); }
.mm-search-result-item img { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; }
.mm-search-result-item .mm-sr-info { flex: 1; }
.mm-search-result-item .mm-sr-name { color: var(--text-primary); font-weight: 500; font-size: 0.9rem; }
.mm-search-result-item .mm-sr-price { color: var(--gold); font-size: 0.85rem; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════ */
/* MOBILE DRAWER                                               */
/* ═══════════════════════════════════════════════════════════ */
.mm-mobile-overlay {
  position: fixed; inset: 0; z-index: 1050;
  background: rgba(0,0,0,0.6);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.mm-mobile-overlay.active { opacity: 1; pointer-events: all; }
.mm-mobile-drawer {
  position: fixed; top: 0; left: -320px;
  width: 300px; height: 100vh; z-index: 1051;
  background: rgba(44, 26, 18, 0.97);
  backdrop-filter: blur(30px);
  border-right: 1px solid var(--border-subtle);
  display: flex; flex-direction: column;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mm-mobile-drawer.active { left: 0; }
.mm-mobile-drawer-header {
  padding: 20px; display: flex;
  align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}
.mm-mobile-close {
  background: none; border: none;
  color: var(--text-secondary); font-size: 1.5rem;
}
.mm-mobile-nav { flex: 1; padding: 20px; }
.mm-mobile-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; color: var(--text-secondary);
  font-size: 1rem; border-radius: var(--radius-md);
  transition: all var(--transition); margin-bottom: 4px;
}
.mm-mobile-nav a:hover { background: var(--bg-glass-strong); color: var(--text-primary); }
.mm-mobile-nav a i { width: 20px; color: var(--gold); }
.mm-mobile-drawer-footer {
  padding: 20px; border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem; color: var(--text-muted);
}
.mm-mobile-drawer-footer p { margin-bottom: 8px; }
.mm-mobile-social { display: flex; gap: 12px; margin-top: 12px; }
.mm-mobile-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-glass-strong); color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.mm-mobile-social a:hover { background: var(--gold); color: var(--bg-primary); }

/* ═══════════════════════════════════════════════════════════ */
/* HERO SLIDER                                                 */
/* ═══════════════════════════════════════════════════════════ */
.mm-hero-slider {
  position: relative; width: 100%;
  height: 85vh; min-height: 500px; max-height: 800px;
  overflow: hidden;
}
.mm-slides-container {
  display: flex; height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.mm-slide {
  min-width: 100%; height: 100%; position: relative;
  background-size: cover; background-position: center;
}
.mm-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,15,10,0.2) 0%, rgba(26,15,10,0.5) 50%, rgba(26,15,10,0.9) 100%);
  z-index: 1;
}
.mm-slide.mm-brand-slide {
  background: linear-gradient(135deg, #1A0F0A 0%, #2C1A12 40%, #170d08 70%, #1A0F0A 100%);
}
.mm-slide.mm-brand-slide::before {
  background: radial-gradient(ellipse at 30% 50%, rgba(212,165,116,0.08) 0%, transparent 70%);
}
.mm-slide-content {
  position: absolute; bottom: 100px; left: 60px; z-index: 2;
  max-width: 560px; color: var(--text-primary);
}
.mm-slide-badge {
  display: inline-block;
  background: rgba(212,165,116,0.15);
  border: 1px solid var(--gold);
  color: var(--gold); padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}
.mm-slide-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.mm-slide-subtitle { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 20px; line-height: 1.6; }
.mm-slide-price { font-size: 1.6rem; color: var(--gold); font-weight: 700; margin-bottom: 20px; }
.mm-slide-price .original {
  text-decoration: line-through; color: var(--text-muted);
  font-size: 1rem; margin-left: 10px; font-weight: 400;
}
.mm-slide-cta {
  display: inline-flex; align-items: center;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-primary); font-weight: 700;
  font-size: 0.95rem; border-radius: var(--radius-full);
  text-decoration: none; border: none;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
}
.mm-slide-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,165,116,0.5);
}

/* Slider Arrows */
.mm-slider-arrows {
  position: absolute; top: 50%; width: 100%;
  display: flex; justify-content: space-between;
  padding: 0 20px; z-index: 5;
  transform: translateY(-50%); pointer-events: none;
}
.mm-slider-arrow {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all var(--transition);
  pointer-events: all;
}
.mm-slider-arrow:hover {
  background: var(--gold); color: var(--bg-primary);
  border-color: var(--gold);
}

/* Slider Dots */
.mm-slider-dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.mm-slider-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none;
  cursor: pointer; transition: all var(--transition);
}
.mm-slider-dot.active {
  background: var(--gold); transform: scale(1.3);
  box-shadow: 0 0 12px rgba(212,165,116,0.5);
}

/* ═══════════════════════════════════════════════════════════ */
/* CATEGORIES STRIP                                            */
/* ═══════════════════════════════════════════════════════════ */
.mm-categories-strip {
  background: var(--bg-glass-strong);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 20px; overflow-x: auto;
}
.mm-categories-inner {
  max-width: 1400px; margin: auto;
  display: flex; gap: 24px; justify-content: center;
  flex-wrap: wrap;
}
.mm-category-chip {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-secondary); font-size: 0.85rem;
  white-space: nowrap;
}
.mm-category-chip i { color: var(--gold); font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════ */
/* SECTIONS                                                    */
/* ═══════════════════════════════════════════════════════════ */
.mm-section { padding: 80px 20px; max-width: 1400px; margin: 0 auto; }
.mm-section-header { text-align: center; margin-bottom: 50px; }
.mm-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800; color: var(--text-primary);
  position: relative; display: inline-block;
}
.mm-section-title::after {
  content: ''; display: block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 12px auto 0; border-radius: 3px;
}
.mm-section-subtitle { color: var(--text-secondary); margin-top: 10px; font-size: 1rem; }
.mm-gold-text { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════ */
/* CATEGORY FILTERS                                            */
/* ═══════════════════════════════════════════════════════════ */
.mm-filters {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
}
.mm-filter-btn {
  padding: 10px 24px; border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: var(--bg-glass); color: var(--text-secondary);
  font-size: 0.9rem; font-weight: 500;
  transition: all var(--transition);
}
.mm-filter-btn i { margin-right: 6px; }
.mm-filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.mm-filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-primary); border-color: transparent; font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════ */
/* PRODUCT CARDS — THE STAR OF THE SHOW                        */
/* ═══════════════════════════════════════════════════════════ */
.mm-products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mm-product-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: visible; background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* For scroll reveal */
  opacity: 0; transform: translateY(30px);
}
.mm-product-card.mm-visible {
  opacity: 1; transform: translateY(0);
}
/* RGB Border Glow */
.mm-product-card::before {
  content: ''; position: absolute; inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: conic-gradient(from var(--angle, 0deg),
    #ff0000, #ff8800, #ffff00, #00ff00, #0088ff, #8800ff, #ff0000);
  z-index: -1; opacity: 0;
  transition: opacity var(--transition-slow);
}
.mm-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212,165,116,0.12);
}
.mm-product-card:hover::before {
  opacity: 1; animation: rgbRotate 3s linear infinite;
}
.mm-product-card::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  z-index: 0;
}
/* Product Image */
.mm-product-img {
  position: relative; width: 100%;
  aspect-ratio: 1; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 1;
}
.mm-product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity var(--transition-slow), transform 0.6s ease;
}
.mm-product-img .mm-img-primary { position: relative; z-index: 1; }
.mm-product-img .mm-img-secondary {
  position: absolute; inset: 0; z-index: 2; opacity: 0;
}
.mm-product-card:hover .mm-img-primary { opacity: 0; transform: scale(1.05); }
.mm-product-card:hover .mm-img-secondary { opacity: 1; }
/* Discount Badge */
.mm-product-discount {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: var(--danger); color: white;
  padding: 4px 10px; border-radius: var(--radius-sm);
  font-size: 0.72rem; font-weight: 700;
}
/* Wishlist */
.mm-product-wishlist {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(10px);
  color: white; border: none; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); cursor: pointer;
}
.mm-product-wishlist:hover { background: var(--gold); color: var(--bg-primary); transform: scale(1.1); }
.mm-product-wishlist.active { background: var(--danger); color: white; }
/* Product Info */
.mm-product-info { padding: 16px; position: relative; z-index: 1; }
.mm-product-type {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--gold);
  margin-bottom: 6px; font-weight: 500;
}
.mm-product-name {
  font-family: var(--font-heading); font-size: 0.95rem;
  font-weight: 600; color: var(--text-primary);
  margin-bottom: 8px; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.mm-product-prices { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.mm-product-price { font-size: 1.05rem; font-weight: 700; color: var(--gold); }
.mm-product-compare {
  font-size: 0.82rem; text-decoration: line-through;
  color: var(--text-muted);
}
/* Product Actions */
.mm-product-actions { display: flex; gap: 8px; }
.mm-btn-add-cart {
  flex: 1; padding: 10px 8px; border-radius: var(--radius-md);
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  color: var(--gold); font-weight: 600; font-size: 0.82rem;
  transition: all var(--transition);
}
.mm-btn-add-cart:hover { background: var(--gold); color: var(--bg-primary); }
.mm-btn-buy-now {
  flex: 1; padding: 10px 8px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-primary); font-weight: 700; font-size: 0.82rem;
  border: none; transition: all var(--transition);
}
.mm-btn-buy-now:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(212,165,116,0.4);
}
/* Stagger reveal */
.mm-product-card:nth-child(1) { transition-delay: 0s; }
.mm-product-card:nth-child(2) { transition-delay: 0.1s; }
.mm-product-card:nth-child(3) { transition-delay: 0.2s; }
.mm-product-card:nth-child(4) { transition-delay: 0.3s; }
.mm-product-card:nth-child(5) { transition-delay: 0.4s; }
.mm-product-card:nth-child(6) { transition-delay: 0.5s; }
.mm-product-card:nth-child(7) { transition-delay: 0.6s; }
.mm-product-card:nth-child(8) { transition-delay: 0.7s; }
.mm-product-card:nth-child(9) { transition-delay: 0.8s; }

/* Card hidden for filter */
.mm-product-card.mm-card-hidden { display: none; }

/* ═══════════════════════════════════════════════════════════ */
/* PDP — FULL PRODUCT DETAIL PAGE                              */
/* ═══════════════════════════════════════════════════════════ */
.mm-pdp-section { padding-top: 20px; }
.mm-btn-back {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-glass-strong); border: 1px solid var(--border-light);
  color: var(--text-secondary); padding: 10px 20px;
  border-radius: var(--radius-full); font-size: 0.88rem;
  margin-bottom: 24px; transition: all var(--transition);
}
.mm-btn-back:hover { border-color: var(--gold); color: var(--gold); }
.mm-pdp-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.mm-pdp-gallery { position: relative; }
.mm-pdp-main-img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius-lg); border: 1px solid var(--border-subtle);
}
.mm-pdp-thumbs {
  display: flex; gap: 10px; margin-top: 14px;
  overflow-x: auto; padding-bottom: 4px;
}
.mm-pdp-thumb {
  width: 72px; height: 72px; border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer; flex-shrink: 0;
  border: 2px solid transparent; transition: border-color var(--transition);
}
.mm-pdp-thumb.active, .mm-pdp-thumb:hover { border-color: var(--gold); }
.mm-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mm-pdp-info .mm-product-type { font-size: 0.78rem; margin-bottom: 8px; }
.mm-pdp-info .mm-pdp-title {
  font-family: var(--font-heading); font-size: 1.8rem;
  font-weight: 800; color: var(--text-primary);
  line-height: 1.25; margin-bottom: 16px;
}
.mm-pdp-info .mm-pdp-prices { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.mm-pdp-info .mm-pdp-price {
  font-size: 1.8rem; font-weight: 800; color: var(--gold);
}
.mm-pdp-info .mm-pdp-compare {
  font-size: 1.1rem; text-decoration: line-through; color: var(--text-muted);
}
.mm-pdp-info .mm-pdp-discount-badge {
  background: var(--success); color: var(--bg-primary);
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 700;
}
.mm-pdp-desc {
  color: var(--text-secondary); font-size: 0.92rem;
  line-height: 1.8; margin-bottom: 24px;
  max-height: 300px; overflow-y: auto;
  padding-right: 8px;
}
.mm-pdp-desc p { margin-bottom: 10px; }
.mm-pdp-actions {
  display: flex; gap: 12px; margin-bottom: 28px;
}
.mm-pdp-actions .mm-btn-add-cart,
.mm-pdp-actions .mm-btn-buy-now {
  padding: 14px 28px; font-size: 0.95rem;
}
.mm-pdp-share {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px; border-top: 1px solid var(--border-subtle);
}
.mm-pdp-share-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.mm-pdp-share-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-glass-strong); border: 1px solid var(--border-light);
  color: var(--text-secondary); display: flex;
  align-items: center; justify-content: center;
  font-size: 1rem; transition: all var(--transition); cursor: pointer;
}
.mm-pdp-share-btn:hover { background: var(--gold); color: var(--bg-primary); border-color: var(--gold); }
.mm-pdp-share-btn.whatsapp:hover { background: #25D366; border-color: #25D366; }
.mm-pdp-share-btn.email:hover { background: var(--info); border-color: var(--info); }

/* Similar Products */
.mm-similar-section { margin-top: 60px; }
.mm-similar-section h3 {
  font-family: var(--font-heading); font-size: 1.4rem;
  font-weight: 700; color: var(--text-primary);
  margin-bottom: 24px; position: relative;
}
.mm-similar-section h3::after {
  content: ''; display: inline-block; width: 40px; height: 3px;
  background: var(--gold); margin-left: 12px; vertical-align: middle;
  border-radius: 3px;
}
.mm-similar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mm-dashboard-grid {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 24px; min-height: 400px;
}
.mm-dashboard-nav {
  display: flex; flex-direction: column; gap: 4px;
}
.mm-dashboard-nav button {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: var(--radius-md);
  background: none; border: none;
  color: var(--text-secondary); font-size: 0.92rem;
  text-align: left; transition: all var(--transition);
  cursor: pointer;
}
.mm-dashboard-nav button:hover { background: var(--bg-glass-strong); color: var(--text-primary); }
.mm-dashboard-nav button.active { background: var(--gold-dim); color: var(--gold); border-left: 3px solid var(--gold); }
.mm-dashboard-nav button i { width: 18px; color: var(--gold); }
.mm-dashboard-content {
  background: var(--bg-glass); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px;
}
.mm-dashboard-content h3 {
  font-family: var(--font-heading); font-size: 1.2rem;
  font-weight: 700; color: var(--text-primary); margin-bottom: 20px;
}
.mm-order-card {
  background: var(--bg-glass-strong); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 20px;
  margin-bottom: 16px;
}
.mm-order-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; flex-wrap: wrap; gap: 8px;
}
.mm-order-id { font-weight: 600; color: var(--text-primary); margin-right: 12px; }
.mm-order-date { font-size: 0.82rem; color: var(--text-muted); }
.mm-order-status {
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 600;
}
.mm-status-transit { background: rgba(59,130,246,0.15); color: var(--info); }
.mm-status-delivered { background: rgba(74,222,128,0.15); color: var(--success); }
.mm-order-body { display: flex; gap: 14px; align-items: center; }
.mm-order-img { width: 60px; height: 60px; border-radius: var(--radius-md); object-fit: cover; }
.mm-order-info h4 { font-size: 0.92rem; color: var(--text-primary); }
.mm-order-info p { font-size: 0.82rem; color: var(--text-muted); }
.mm-order-price { margin-left: auto; color: var(--gold); font-weight: 700; }
.mm-order-footer { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-subtle); }
.mm-btn-track {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: var(--radius-full);
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 0.82rem; font-weight: 600;
  transition: all var(--transition); cursor: pointer;
}
.mm-btn-track:hover { background: var(--gold); color: var(--bg-primary); }

/* ═══════════════════════════════════════════════════════════ */
/* ABOUT SECTION                                               */
/* ═══════════════════════════════════════════════════════════ */
.mm-about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.mm-about-image { position: relative; text-align: center; }
.mm-about-logo-img {
  width: 320px; height: 320px; border-radius: 50%;
  object-fit: cover; margin: 0 auto;
  border: 4px solid rgba(212,165,116,0.2);
  box-shadow: 0 0 60px rgba(212,165,116,0.1);
  animation: float 6s ease-in-out infinite;
}
.mm-about-img-badge {
  position: absolute; bottom: 20px; right: 20%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-primary); padding: 16px 20px;
  border-radius: var(--radius-lg); font-size: 0.85rem;
  text-align: center; box-shadow: var(--shadow-gold);
}
.mm-about-label {
  display: inline-block; color: var(--gold);
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.mm-about-text { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }
.mm-about-stats { display: flex; gap: 32px; margin-top: 24px; }
.mm-stat { text-align: center; }
.mm-stat-number {
  display: block; font-family: var(--font-heading);
  font-size: 2rem; font-weight: 800; color: var(--gold);
}
.mm-stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════ */
/* TRUST / WHY CHOOSE US                                       */
/* ═══════════════════════════════════════════════════════════ */
.mm-trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mm-trust-card {
  background: var(--bg-glass); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; transition: all var(--transition);
}
.mm-trust-card:hover {
  transform: translateY(-4px); border-color: var(--border-gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.mm-trust-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  background: var(--gold-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.4rem;
}
.mm-trust-card h3 {
  font-family: var(--font-heading); font-size: 1.05rem;
  color: var(--text-primary); margin-bottom: 8px; font-weight: 600;
}
.mm-trust-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════ */
/* CTA / CONTACT SECTION                                       */
/* ═══════════════════════════════════════════════════════════ */
.mm-cta-section { max-width: 1400px; }
.mm-cta-inner {
  display: flex; align-items: center; gap: 60px;
  background: var(--bg-glass); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 60px;
}
.mm-cta-content { flex: 1; }
.mm-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.mm-whatsapp-btn { background: linear-gradient(135deg, #25D366, #128C7E) !important; color: white !important; }
.mm-phone-btn {
  background: transparent !important; color: var(--text-primary) !important;
  border: 1px solid var(--border-light) !important;
}
.mm-phone-btn:hover { border-color: var(--gold) !important; }
.mm-cta-image { flex-shrink: 0; }
.mm-cta-logo {
  width: 200px; height: 200px; border-radius: 50%;
  object-fit: cover; animation: float 6s ease-in-out infinite;
  border: 3px solid rgba(212,165,116,0.2);
}

/* ═══════════════════════════════════════════════════════════ */
/* CART DRAWER                                                 */
/* ═══════════════════════════════════════════════════════════ */
.mm-cart-overlay {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(0,0,0,0.6);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.mm-cart-overlay.active { opacity: 1; pointer-events: all; }
.mm-cart-drawer {
  position: fixed; top: 0; right: -420px;
  width: 400px; max-width: 90vw; height: 100vh;
  z-index: 1201; display: flex; flex-direction: column;
  background: rgba(44, 26, 18, 0.97);
  backdrop-filter: blur(30px);
  border-left: 1px solid var(--border-subtle);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mm-cart-drawer.active { right: 0; }
.mm-cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between; align-items: center;
}
.mm-cart-title {
  font-family: var(--font-heading); font-size: 1.2rem;
  font-weight: 700; color: var(--text-primary);
  display: flex; align-items: center; gap: 8px;
}
.mm-cart-title i { color: var(--gold); }
.mm-cart-header-count { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
.mm-cart-close {
  background: none; border: none;
  color: var(--text-secondary); font-size: 1.4rem;
  transition: color var(--transition);
}
.mm-cart-close:hover { color: var(--gold); }
.mm-cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.mm-cart-item {
  display: flex; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  animation: slideInRight 0.3s ease;
}
.mm-cart-item-img { width: 70px; height: 70px; border-radius: var(--radius-md); object-fit: cover; flex-shrink: 0; }
.mm-cart-item-details { flex: 1; }
.mm-cart-item-name { font-size: 0.88rem; color: var(--text-primary); font-weight: 500; margin-bottom: 4px; }
.mm-cart-item-price { color: var(--gold); font-weight: 600; font-size: 0.9rem; }
.mm-cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.mm-qty-btn {
  width: 28px; height: 28px; border-radius: var(--radius-sm);
  background: var(--bg-glass-strong); border: 1px solid var(--border-light);
  color: var(--text-primary); display: flex;
  align-items: center; justify-content: center; font-size: 0.9rem;
  transition: all var(--transition);
}
.mm-qty-btn:hover { background: var(--gold); color: var(--bg-primary); border-color: var(--gold); }
.mm-qty-value {
  width: 36px; text-align: center; background: none;
  border: none; color: var(--text-primary); font-weight: 600;
  font-size: 0.9rem;
}
.mm-cart-item-remove {
  background: none; border: none; color: var(--danger);
  font-size: 0.75rem; cursor: pointer;
  transition: opacity var(--transition); margin-left: auto; align-self: flex-start;
}
.mm-cart-item-remove:hover { opacity: 0.7; }
.mm-cart-empty {
  text-align: center; padding: 60px 20px; color: var(--text-muted);
}
.mm-cart-empty i { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; display: block; }
.mm-cart-empty h4 { color: var(--text-primary); margin-bottom: 8px; font-family: var(--font-heading); }
.mm-cart-footer { padding: 20px 24px; border-top: 1px solid var(--border-subtle); }
.mm-cart-coupon { display: flex; gap: 8px; margin-bottom: 16px; }
.mm-coupon-field {
  flex: 1; padding: 10px 14px; border-radius: var(--radius-md);
  background: var(--bg-glass); border: 1px solid var(--border-light);
  color: var(--text-primary); font-size: 0.85rem; outline: none;
}
.mm-coupon-field:focus { border-color: var(--gold); }
.mm-coupon-apply {
  padding: 10px 16px; border-radius: var(--radius-md);
  background: var(--gold); border: none;
  color: var(--bg-primary); font-weight: 600; font-size: 0.85rem;
}
.mm-cart-total-row {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 12px;
}
.mm-cart-total-label { color: var(--text-secondary); }
.mm-cart-total { color: var(--gold); font-size: 1.3rem; font-weight: 700; }
.mm-cart-discount { color: var(--success); font-weight: 600; }
.mm-text-green { color: var(--success); }
.mm-btn-checkout {
  width: 100%; padding: 14px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-primary); font-weight: 700; font-size: 1rem;
  border: none; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.mm-btn-checkout:hover { box-shadow: var(--shadow-gold); transform: translateY(-1px); }
.mm-btn-continue {
  width: 100%; padding: 12px; margin-top: 8px;
  border-radius: var(--radius-lg);
  background: none; border: 1px solid var(--border-light);
  color: var(--text-secondary); font-size: 0.9rem;
  transition: all var(--transition);
}
.mm-btn-continue:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════════════════════ */
/* MODALS                                                      */
/* ═══════════════════════════════════════════════════════════ */
.mm-modal-overlay {
  position: fixed; inset: 0; z-index: 1300;
  background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
}
.mm-modal-overlay.active { opacity: 1; pointer-events: all; }
.mm-modal {
  width: 90%; max-height: 90vh; overflow-y: auto;
  border-radius: var(--radius-xl);
  background: rgba(44, 26, 18, 0.97);
  backdrop-filter: blur(30px);
  border: 1px solid var(--border-subtle);
  padding: 32px; position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform var(--transition);
}
.mm-modal-overlay.active .mm-modal { transform: scale(1) translateY(0); }
.mm-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg-glass-strong); border: none;
  color: var(--text-secondary); width: 36px; height: 36px;
  border-radius: 50%; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); z-index: 2;
}
.mm-modal-close:hover { background: var(--danger); color: white; }
.mm-modal-logo { text-align: center; margin-bottom: 20px; }

/* Auth Modal */
.mm-auth-modal { max-width: 440px; }
.mm-modal-tabs { display: flex; margin-bottom: 24px; }
.mm-modal-tab {
  flex: 1; padding: 12px; text-align: center;
  background: none; border: none;
  color: var(--text-muted); font-size: 0.95rem; font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all var(--transition); cursor: pointer;
}
.mm-modal-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.mm-form-group { margin-bottom: 16px; }
.mm-form-label { display: block; color: var(--text-secondary); font-size: 0.82rem; margin-bottom: 6px; font-weight: 500; }
.mm-form-input {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-md);
  background: var(--bg-glass); border: 1px solid var(--border-light);
  color: var(--text-primary); font-size: 0.92rem;
  transition: border-color var(--transition); outline: none;
}
.mm-form-input:focus { border-color: var(--gold); }
.mm-form-input::placeholder { color: var(--text-muted); }
.mm-form-remember {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 16px;
  font-size: 0.85rem; color: var(--text-muted);
}
.mm-form-remember label { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.mm-form-remember input[type="checkbox"] { accent-color: var(--gold); }
.mm-forgot-link { color: var(--gold); font-size: 0.82rem; }
.mm-form-submit {
  width: 100%; padding: 14px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-primary); font-weight: 700;
  border: none; font-size: 0.95rem; margin-top: 8px;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.mm-form-submit:hover { box-shadow: var(--shadow-gold); }
.mm-hidden { display: none !important; }
.mm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Quick View Modal */
.mm-quickview-modal { max-width: 900px; }
.mm-quickview { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mm-quickview-gallery { border-radius: var(--radius-lg); overflow: hidden; }
.mm-quickview-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.mm-quickview-thumbs { display: flex; gap: 8px; margin-top: 12px; }
.mm-quickview-thumb {
  width: 60px; height: 60px; border-radius: 8px;
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: border-color var(--transition);
}
.mm-quickview-thumb.active, .mm-quickview-thumb:hover { border-color: var(--gold); }
.mm-quickview-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mm-quickview-info .mm-product-type { margin-top: 8px; }
.mm-quickview-info .mm-product-name { font-size: 1.5rem; margin-bottom: 12px; }
.mm-quickview-info .mm-product-prices { margin-bottom: 16px; }
.mm-quickview-info .mm-product-price { font-size: 1.4rem; }
.mm-quickview-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; max-height: 150px; overflow-y: auto; }
.mm-quickview-desc p { margin-bottom: 8px; }
.mm-quickview-info .mm-product-actions { margin-top: 20px; }

/* Checkout Modal */
.mm-checkout-modal { max-width: 800px; }
.mm-checkout-title {
  font-family: var(--font-heading); font-size: 1.4rem;
  font-weight: 700; color: var(--text-primary); margin-bottom: 24px;
}
.mm-checkout-title i { color: var(--gold); }
.mm-checkout-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; }
.mm-checkout-subtitle {
  font-family: var(--font-heading); font-size: 1rem;
  font-weight: 600; color: var(--text-primary); margin-bottom: 16px;
}
.mm-payment-methods { display: flex; gap: 10px; margin: 16px 0; flex-wrap: wrap; }
.mm-payment-method {
  padding: 12px 18px; border-radius: var(--radius-md);
  background: var(--bg-glass); border: 1px solid var(--border-light);
  color: var(--text-secondary); font-size: 0.85rem;
  display: flex; align-items: center; gap: 8px;
  transition: all var(--transition); cursor: pointer;
}
.mm-payment-method.selected {
  border-color: var(--gold);
  background: var(--gold-dim); color: var(--gold);
}
.mm-payment-method:hover { border-color: var(--gold); }
.mm-order-summary {
  background: var(--bg-glass); border-radius: var(--radius-lg);
  padding: 20px; border: 1px solid var(--border-subtle);
}
.mm-checkout-items { margin-bottom: 16px; }
.mm-checkout-item {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.85rem;
}
.mm-checkout-item span:first-child { color: var(--text-secondary); }
.mm-checkout-item span:last-child { color: var(--text-primary); font-weight: 500; }
.mm-checkout-coupon { margin: 12px 0; }
.mm-coupon-hint { font-size: 0.8rem; color: var(--text-muted); }
.mm-coupon-hint code {
  background: var(--bg-glass-strong); padding: 2px 8px;
  border-radius: 4px; color: var(--gold); font-size: 0.78rem;
}
.mm-checkout-totals { border-top: 1px solid var(--border-subtle); padding-top: 12px; }
.mm-checkout-final { font-size: 1.1rem; font-weight: 700; }
.mm-checkout-final span:last-child { color: var(--gold); }
.mm-btn-place-order { margin-top: 20px; }

/* Success Modal */
.mm-success-modal { max-width: 440px; text-align: center; }
.mm-success-content { padding: 20px; }
.mm-success-icon { font-size: 4rem; color: var(--success); margin-bottom: 16px; animation: successPop 0.6s ease; }
.mm-success-content h2 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-primary); margin-bottom: 12px; }
.mm-success-content p { color: var(--text-secondary); margin-bottom: 8px; }
.mm-success-order-id { margin-top: 16px; }
.mm-success-order-id strong { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════ */
/* FOOTER                                                      */
/* ═══════════════════════════════════════════════════════════ */
.mm-footer {
  background: rgba(13, 8, 5, 0.97);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 20px 0; margin-top: 0;
}
.mm-footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.mm-footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.mm-footer-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.mm-footer-title {
  font-family: var(--font-heading); font-size: 1.05rem;
  font-weight: 700; color: var(--text-primary); margin-bottom: 16px;
}
.mm-footer-text { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }
.mm-footer-links li { margin-bottom: 10px; }
.mm-footer-links a {
  color: var(--text-secondary); font-size: 0.88rem;
  transition: all var(--transition);
}
.mm-footer-links a:hover { color: var(--gold); padding-left: 6px; }
.mm-contact-links li {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-secondary); font-size: 0.85rem;
}
.mm-contact-links i { color: var(--gold); width: 16px; }
.mm-social-icons { display: flex; gap: 10px; margin-top: 16px; }
.mm-social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-glass-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 1rem;
  transition: all var(--transition);
}
.mm-social-icon:hover {
  background: var(--gold); color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212,165,116,0.3);
}
.mm-newsletter-input { display: flex; margin-top: 12px; }
.mm-newsletter-input input {
  flex: 1; padding: 12px 14px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: var(--bg-glass); border: 1px solid var(--border-light);
  border-right: none; color: var(--text-primary);
  font-size: 0.88rem; outline: none;
}
.mm-newsletter-input input:focus { border-color: var(--gold); }
.mm-newsletter-input input::placeholder { color: var(--text-muted); }
.mm-newsletter-input button {
  padding: 12px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none; color: var(--bg-primary); font-size: 1rem;
}
.mm-trust-badges { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.mm-trust-badge {
  font-size: 0.75rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.mm-trust-badge i { color: var(--gold); }
.mm-footer-bottom {
  text-align: center; padding: 24px 0; margin-top: 40px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted); font-size: 0.82rem;
}
.mm-payment-icons {
  display: flex; justify-content: center; gap: 16px;
  margin-bottom: 12px; font-size: 1.6rem;
  color: var(--text-muted); opacity: 0.5;
}
.mm-payment-icons i { transition: opacity var(--transition); }
.mm-payment-icons i:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════ */
/* SCROLL TO TOP                                               */
/* ═══════════════════════════════════════════════════════════ */
.mm-scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-primary); border: none;
  font-size: 1.1rem; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: all var(--transition); pointer-events: none;
  box-shadow: var(--shadow-gold);
}
.mm-scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.mm-scroll-top:hover { transform: translateY(-4px); }

/* ═══════════════════════════════════════════════════════════ */
/* TOAST NOTIFICATIONS                                         */
/* ═══════════════════════════════════════════════════════════ */
.mm-toast-container {
  position: fixed; top: 80px; right: 20px;
  z-index: 9000; display: flex; flex-direction: column;
  gap: 10px;
}
.mm-toast {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: var(--radius-md);
  background: rgba(44, 26, 18, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary); font-size: 0.9rem;
  min-width: 280px; max-width: 400px;
  box-shadow: var(--shadow-card);
  animation: toastIn 0.4s ease;
}
.mm-toast.fade-out { animation: toastOut 0.4s ease forwards; }
.mm-toast-icon { font-size: 1.2rem; }
.mm-toast.success .mm-toast-icon { color: var(--success); }
.mm-toast.error .mm-toast-icon { color: var(--danger); }
.mm-toast.info .mm-toast-icon { color: var(--info); }

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                  */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .mm-products-grid { grid-template-columns: repeat(3, 1fr); }
  .mm-similar-grid { grid-template-columns: repeat(3, 1fr); }
  .mm-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .mm-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .mm-pdp-grid { gap: 32px; }
}
@media (max-width: 992px) {
  .mm-nav { display: none; }
  .mm-mobile-menu-btn {
    display: flex; align-items: center; justify-content: center;
    background: none; border: none;
    color: var(--text-secondary); font-size: 1.3rem;
  }
  .mm-products-grid { grid-template-columns: repeat(2, 1fr); }
  .mm-similar-grid { grid-template-columns: repeat(2, 1fr); }
  .mm-hero-slider { height: 60vh; min-height: 400px; }
  .mm-slide-content { left: 30px; bottom: 60px; max-width: 400px; }
  .mm-about-grid { grid-template-columns: 1fr; text-align: center; }
  .mm-about-logo-img { width: 240px; height: 240px; }
  .mm-about-stats { justify-content: center; }
  .mm-section-title::after { margin: 12px auto 0; }
  .mm-quickview { grid-template-columns: 1fr; }
  .mm-checkout-grid { grid-template-columns: 1fr; }
  .mm-pdp-grid { grid-template-columns: 1fr; gap: 24px; }
  .mm-pdp-info .mm-pdp-title { font-size: 1.4rem; }
  .mm-cta-inner { flex-direction: column; text-align: center; padding: 40px 24px; }
  .mm-cta-content .mm-section-title { text-align: center !important; }
  .mm-cta-actions { justify-content: center; }
  .mm-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .mm-dashboard-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .mm-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .mm-similar-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .mm-hero-slider { height: 50vh; min-height: 320px; }
  .mm-slide-content { left: 16px; right: 16px; bottom: 40px; }
  .mm-slide-title { font-size: 1.3rem; }
  .mm-slide-subtitle { font-size: 0.85rem; }
  .mm-slide-badge { font-size: 0.65rem; padding: 4px 12px; }
  .mm-section { padding: 40px 14px; }
  .mm-product-actions { flex-direction: column; }
  .mm-product-info { padding: 10px; }
  .mm-product-name { font-size: 0.82rem; }
  .mm-product-price { font-size: 0.92rem; }
  .mm-cart-drawer { width: 100%; max-width: 100%; }
  .mm-footer-grid { grid-template-columns: 1fr; }
  .mm-trust-grid { grid-template-columns: 1fr; }
  .mm-header-inner { padding: 10px 14px; }
  .mm-header-actions { gap: 0.5rem; margin-left: 0.8rem; }
  .mm-currency-select { display: none; }
  .mm-about-stats { flex-direction: column; gap: 16px; }
  .mm-form-row { grid-template-columns: 1fr; }
  .mm-cta-logo { width: 120px; height: 120px; }
  .mm-slider-arrow { width: 36px; height: 36px; font-size: 0.85rem; }
  .mm-pdp-info .mm-pdp-title { font-size: 1.2rem; }
  .mm-pdp-info .mm-pdp-price { font-size: 1.4rem; }
  .mm-pdp-actions { flex-direction: column; }
  .mm-pdp-share { flex-wrap: wrap; }
  .mm-splash-text { font-size: 1.5rem; }
  .mm-modal { padding: 20px 16px; width: 95%; }
  .mm-logo-text { font-size: 1.1rem; }
  .mm-logo-img { height: 38px; width: 38px; }
  .mm-filters { gap: 6px; }
  .mm-filter-btn { padding: 8px 16px; font-size: 0.8rem; }
}

/* ═══════════════════════════════════════════════════════════ */
/* SCROLLBAR STYLING                                           */
/* ═══════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(212,165,116,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
