/* ============================================================
   SVARUP ENTERPRISES — MAIN.CSS
   Global styles, variables, resets, typography, layout
   ============================================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
  /* Brand Colors */
  --color-primary:       #B8960C;   /* Gold */
  --color-primary-dark:  #8B6D08;   /* Dark Gold */
  --color-primary-light: #F0C040;   /* Light Gold */
  --color-primary-bg:    #FDF8EC;   /* Gold Tint BG */

  /* Neutral Palette */
  --color-dark:          #1A1A2E;   /* Deep Navy */
  --color-dark-2:        #2D2D44;   /* Dark Slate */
  --color-dark-3:        #4A4A6A;   /* Medium Slate */
  --color-grey:          #6B7280;   /* Text Grey */
  --color-grey-light:    #9CA3AF;   /* Light Grey */
  --color-border:        #E5E7EB;   /* Border */
  --color-bg-light:      #F9FAFB;   /* Light BG */
  --color-bg-white:      #FFFFFF;   /* White */

  /* Semantic Colors */
  --color-success:       #10B981;
  --color-warning:       #F59E0B;
  --color-error:         #EF4444;
  --color-whatsapp:      #25D366;
  --color-whatsapp-dark: #128C7E;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm:  0.25rem;
  --radius-md:  0.5rem;
  --radius-lg:  0.75rem;
  --radius-xl:  1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md:  0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl:  0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-gold: 0 4px 20px rgba(184,150,12,0.25);

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition-base:   0.25s ease;
  --transition-slow:   0.4s ease;

  /* Layout */
  --container-max:     1280px;
  --header-height:     72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-dark);
  background-color: var(--color-bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); }
h2 { font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 640px) {
  .container { padding: 0 var(--space-6); }
}

@media (min-width: 1024px) {
  .container { padding: 0 var(--space-8); }
}

.section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--space-20) 0; }
}

.section--sm { padding: var(--space-12) 0; }
.section--lg { padding: var(--space-24) 0; }

/* ---- Utility Classes ---- */
.text-primary    { color: var(--color-primary); }
.text-dark       { color: var(--color-dark); }
.text-grey       { color: var(--color-grey); }
.text-white      { color: #fff; }
.bg-primary      { background-color: var(--color-primary); }
.bg-dark         { background-color: var(--color-dark); }
.bg-light        { background-color: var(--color-bg-light); }
.bg-primary-tint { background-color: var(--color-primary-bg); }

.font-heading    { font-family: var(--font-heading); }
.font-body       { font-family: var(--font-body); }

.text-center     { text-align: center; }
.text-left       { text-align: left; }
.text-right      { text-align: right; }

.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;
}

.hidden { display: none !important; }

/* ---- Section Headings ---- */
.section-heading {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-heading__label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.section-heading__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  color: var(--color-dark);
  margin-bottom: var(--space-4);
}

.section-heading__subtitle {
  font-size: var(--text-lg);
  color: var(--color-grey);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Gold Divider ---- */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin: var(--space-4) 0;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.4;
}

.gold-divider__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-grey);
  padding: var(--space-4) 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumb__item a:hover {
  color: var(--color-primary);
}

.breadcrumb__separator {
  color: var(--color-grey-light);
}

.breadcrumb__current {
  color: var(--color-dark);
  font-weight: 500;
}

/* ---- Page Hero (internal pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  padding: var(--space-16) 0 var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8960C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.page-hero__title {
  color: #fff;
  margin-bottom: var(--space-4);
}

.page-hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Stats Bar ---- */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-8) 0;
}

.stats-bar__item {
  text-align: center;
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}

.stats-bar__label {
  font-size: var(--text-sm);
  color: var(--color-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

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

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}

.btn--dark:hover {
  background: var(--color-dark-2);
  border-color: var(--color-dark-2);
  transform: translateY(-1px);
}

.btn--white {
  background: #fff;
  color: var(--color-dark);
  border-color: #fff;
}

.btn--white:hover {
  background: var(--color-primary-bg);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
}

.btn--whatsapp:hover {
  background: var(--color-whatsapp-dark);
  border-color: var(--color-whatsapp-dark);
  transform: translateY(-1px);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

/* ---- Tag / Badge ---- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.tag--primary {
  background: var(--color-primary-bg);
  color: var(--color-primary-dark);
}

.tag--dark {
  background: var(--color-dark);
  color: #fff;
}

.tag--new {
  background: var(--color-primary);
  color: #fff;
}

/* ---- Form Elements ---- */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: var(--space-2);
}

.form-label--required::after {
  content: ' *';
  color: var(--color-error);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-dark);
  background: var(--color-bg-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(184,150,12,0.15);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: var(--color-error);
}

.form-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-1);
}

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

/* ---- Toast Notifications ---- */
#toast-container {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  pointer-events: none;
}

.toast {
  background: var(--color-dark);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s forwards;
  pointer-events: all;
}

.toast--success { background: #065f46; }
.toast--error   { background: #991b1b; }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(-10px) scale(0.9); }
}

/* ---- Overlay / Modal ---- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.active { opacity: 1; pointer-events: all; }

/* ============================================================
   SHARED NAVBAR (injected via main.js on all pages)
   ============================================================ */

/* z-index layers */
.site-header { z-index: 900 !important; }
#mobile-nav, .mobile-nav { z-index: 1050 !important; }
.cart-drawer { z-index: 1100 !important; }
.variant-modal { z-index: 1200 !important; }

/* Top bar */
.sn-topbar { background: #1A1A2E; color: rgba(255,255,255,0.65); font-size: 0.72rem; padding: 0.45rem 2rem; display: none; }
@media (min-width: 1024px) { .sn-topbar { display: block; } }
.sn-topbar-inner { max-width: 80rem; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.sn-topbar-links { display: flex; align-items: center; gap: 1.25rem; }
.sn-topbar-link { display: flex; align-items: center; gap: 0.35rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.sn-topbar-link:hover { color: #B8960C; }
.sn-topbar-link.sn-wa:hover { color: #25D366; }

/* Main bar */
.sn-bar { background: rgba(26,26,46,0.97); border-bottom: 1px solid rgba(184,150,12,0.14); backdrop-filter: blur(8px); }
.site-header.scrolled .sn-bar { box-shadow: 0 4px 24px rgba(0,0,0,0.45); border-bottom-color: rgba(184,150,12,0.22); }
.sn-bar-inner { max-width: 80rem; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 0.7rem 1.5rem; }

/* Logo */
.sn-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.sn-logo-icon { width: 40px; height: 40px; border-radius: 10px; background: #B8960C; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; color: #fff; font-size: 1.1rem; flex-shrink: 0; box-shadow: 0 0 14px rgba(184,150,12,0.35); }
.sn-logo-name { font-family: 'Playfair Display', serif; font-weight: 700; color: #fff; font-size: 1.05rem; line-height: 1.2; }
.sn-logo-sub { color: #B8960C; font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.9; }

/* Desktop nav */
.sn-nav { display: none; align-items: center; gap: 0.15rem; }
@media (min-width: 768px) { .sn-nav { display: flex; } }
.sn-link { color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.875rem; font-weight: 500; padding: 0.5rem 0.75rem; border-radius: 6px; transition: color 0.2s; position: relative; letter-spacing: 0.01em; background: transparent; border: none; cursor: pointer; font-family: inherit; white-space: nowrap; }
.sn-link::after { content: ''; position: absolute; bottom: 2px; left: 0.75rem; right: 0.75rem; height: 2px; background: #B8960C; border-radius: 1px; transform: scaleX(0); transition: transform 0.25s ease; }
.sn-link:hover::after, .sn-link.active::after { transform: scaleX(1); }
.sn-link:hover, .sn-link.active { color: #D4AE1A; }

/* Products dropdown */
.sn-dropdown-wrap { position: relative; }
.sn-drop-btn { display: flex; align-items: center; gap: 0.3rem; }
.sn-mega { position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%); width: min(700px, 95vw); background: #fff; border-top: 2px solid #B8960C; border-radius: 0 0 14px 14px; box-shadow: 0 24px 60px rgba(0,0,0,0.16); display: none; z-index: 200; padding: 1.25rem 1.5rem 1rem; }
.sn-dropdown-wrap:hover .sn-mega { display: block; }
.sn-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 0.75rem; }
.mega-dropdown-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0.75rem; border-radius: 8px; text-decoration: none; color: #1A1A2E; transition: all 0.18s; }
.mega-dropdown-item:hover { background: #fef9e8; color: #8A6F09; transform: translateX(2px); }
.mega-dropdown-item .icon { font-size: 1.2rem; width: 1.75rem; text-align: center; flex-shrink: 0; }
.sn-mega-footer { border-top: 1px solid #f0ece0; padding-top: 0.6rem; }
.sn-mega-all { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0.75rem; border-radius: 8px; color: #B8960C; text-decoration: none; font-size: 0.875rem; font-weight: 600; transition: background 0.18s; }
.sn-mega-all:hover { background: #fef9e8; }

/* Right actions */
.sn-actions { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.sn-quote { display: none; align-items: center; font-size: 0.8rem; font-weight: 600; padding: 0.42rem 0.9rem; border-radius: 7px; background: rgba(184,150,12,0.12); color: #D4AE1A; border: 1px solid rgba(184,150,12,0.3); text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.sn-quote:hover { background: rgba(184,150,12,0.22); }
@media (min-width: 768px) { .sn-quote { display: flex; } }
.sn-cart-btn { position: relative; padding: 0.45rem; background: transparent; border: none; color: rgba(255,255,255,0.7); cursor: pointer; border-radius: 7px; transition: color 0.2s, background 0.2s; display: flex; align-items: center; }
.sn-cart-btn:hover { color: #B8960C; background: rgba(255,255,255,0.06); }
.sn-cart-badge { position: absolute; top: 0; right: 0; background: #B8960C; color: #fff; font-size: 0.58rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.sn-menu-btn { padding: 0.45rem; background: transparent; border: none; color: rgba(255,255,255,0.7); cursor: pointer; border-radius: 7px; transition: color 0.2s, background 0.2s; display: flex; align-items: center; }
.sn-menu-btn:hover { color: #B8960C; background: rgba(255,255,255,0.06); }
@media (min-width: 768px) { .sn-menu-btn { display: none; } }

/* Mobile Nav */
#mobile-nav, .mobile-nav { position: fixed !important; top: 0 !important; left: auto !important; right: 0 !important; bottom: 0 !important; width: min(310px, 88vw) !important; background: #0b0d1c !important; transform: translateX(100%) !important; transition: transform 0.38s cubic-bezier(0.4,0,0.2,1) !important; overflow-y: auto !important; box-shadow: -10px 0 60px rgba(0,0,0,0.75) !important; border-left: 1px solid rgba(184,150,12,0.25) !important; display: flex !important; flex-direction: column !important; height: auto !important; }
#mobile-nav::before, .mobile-nav::before { content: ''; height: 3px; background: linear-gradient(90deg, #6b5007 0%, #B8960C 25%, #D4AE1A 50%, #B8960C 75%, #6b5007 100%); background-size: 200% 100%; display: block; flex-shrink: 0; animation: snShimmer 3s linear infinite; }
@keyframes snShimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
#mobile-nav.open, .mobile-nav.open { transform: translateX(0) !important; }

.sn-mn-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid rgba(184,150,12,0.15); background: rgba(184,150,12,0.04); flex-shrink: 0; }
.sn-mn-logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.mn-close-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.65); display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background 0.2s, color 0.2s; }
.mn-close-btn:hover { background: rgba(255,255,255,0.14); color: #fff; }
.mn-close-btn:active { background: rgba(255,255,255,0.2); }

.sn-mn-list { list-style: none; margin: 0; padding: 0.75rem; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.mobile-sub-menu { overflow: hidden; max-height: 0; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1); list-style: none; margin: 0; }
.mobile-sub-menu.open { max-height: 560px; }
.mn-chevron { transition: transform 0.3s ease; display: inline-flex; }
.mn-btn-open .mn-chevron { transform: rotate(180deg); }
.mn-link { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1rem; border-radius: 8px; color: rgba(255,255,255,0.72); font-weight: 500; font-size: 0.9rem; transition: all 0.2s ease; text-decoration: none; letter-spacing: 0.01em; border-left: 3px solid transparent; margin: 1px 0; }
.mn-link:hover { background: rgba(184,150,12,0.1); color: #D4AE1A; border-left-color: rgba(184,150,12,0.5); padding-left: 1.1rem; }
.mn-link.active { background: rgba(184,150,12,0.12); color: #D4AE1A; border-left-color: #B8960C; font-weight: 600; }
.mn-btn { width: 100%; background: transparent; border: none; cursor: pointer; font-family: inherit; }
.mn-sublink { display: flex; align-items: center; gap: 0.45rem; padding: 0.5rem 1rem; border-radius: 6px; color: rgba(255,255,255,0.52); font-size: 0.85rem; text-decoration: none; transition: all 0.15s; }
.mn-sublink:hover { background: rgba(184,150,12,0.1); color: #D4AE1A; padding-left: 1.2rem; }

.sn-mn-cta { padding: 0.85rem 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.6rem; border-top: 1px solid rgba(184,150,12,0.15); background: rgba(0,0,0,0.25); flex-shrink: 0; }
.sn-mn-call { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.65rem 1rem; border-radius: 8px; border: 1.5px solid rgba(184,150,12,0.5); color: #D4AE1A; text-decoration: none; font-size: 0.875rem; font-weight: 600; transition: background 0.2s; }
.sn-mn-call:hover { background: rgba(184,150,12,0.12); }
.sn-mn-wa { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.65rem 1rem; border-radius: 8px; background: #22c55e; color: #fff; text-decoration: none; font-size: 0.875rem; font-weight: 600; transition: background 0.2s; box-shadow: 0 4px 14px rgba(34,197,94,0.3); }
.sn-mn-wa:hover { background: #16a34a; }

/* ---- Back to Top ---- */
#back-to-top {
  position: fixed;
  bottom: calc(var(--space-6) + 120px);
  right: var(--space-5);
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 500;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
  border: none;
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

#back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* ---- Lazy Loading ---- */
img.lazy {
  opacity: 0;
  transition: opacity var(--transition-slow);
}

img.lazy.loaded {
  opacity: 1;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes bounce {
  0%, 100% { transform: scale(1); }
  25%       { transform: scale(1.15); }
  75%       { transform: scale(0.95); }
}

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

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.animate-fadeIn   { animation: fadeIn 0.4s ease forwards; }

/* ---- Responsive Helpers ---- */
@media (max-width: 767px) {
  .hide-mobile  { display: none !important; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

/* ---- Print Styles ---- */
@media print {
  .no-print, header, footer,
  #floating-whatsapp, #floating-cart,
  #back-to-top { display: none !important; }
}
