/* =============================================
   MNTG GLOBAL SHOP — Main Stylesheet
   Paleta: Negro profundo + Dorado elegante
   ============================================= */

:root {
  --gold:        #C9A96E;
  --gold-light:  #E8D5B0;
  --gold-dark:   #8B6914;
  --gold-muted:  rgba(201, 169, 110, 0.15);
  --black:       #0D0D0D;
  --dark:        #141414;
  --dark-2:      #1A1A1A;
  --dark-3:      #222222;
  --border:      rgba(201, 169, 110, 0.18);
  --border-mid:  rgba(201, 169, 110, 0.35);
  --text-muted:  rgba(232, 213, 176, 0.45);
  --text-body:   rgba(232, 213, 176, 0.72);
  --radius:      4px;
  --transition:  .25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.py-6 { padding-top: 5rem; padding-bottom: 5rem; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ===== TYPOGRAPHY ===== */
.mntg-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.mntg-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.2;
}

.mntg-section-title em {
  font-style: italic;
  color: var(--gold);
}

.mntg-body-text {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.8;
}

/* ===== NAVBAR ===== */
.mntg-navbar {
  background: rgba(13, 13, 13, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.mntg-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold) !important;
  letter-spacing: 4px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  letter-spacing: 6px;
  color: var(--text-muted);
  font-weight: 300;
  display: inline-block;
  margin-left: 2px;
}

.mntg-nav-link {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  font-weight: 400;
  transition: color var(--transition);
  padding: 4px 0 !important;
  position: relative;
}

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

.mntg-nav-link:hover,
.mntg-nav-link.active {
  color: var(--gold) !important;
}

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

.mntg-cart-icon {
  position: relative;
  color: var(--text-muted);
  transition: color var(--transition);
}
.mntg-cart-icon:hover { color: var(--gold); }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== BUTTONS ===== */
.mntg-btn-gold {
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mntg-btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-1px);
}

.mntg-btn-gold-outline {
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mntg-btn-gold-outline:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.mntg-btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border-mid);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mntg-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-muted);
}

.mntg-btn-gold-sm {
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.mntg-btn-gold-sm:hover { background: var(--gold-light); color: var(--black); }

/* ===== HERO ===== */
.mntg-hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(135deg, #0D0D0D 40%, #1a1507 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,169,110,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,169,110,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.mntg-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.15;
}
.mntg-hero-title em { color: var(--gold); font-style: normal; font-weight: 600; }

.mntg-hero-sub {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.9;
}

.min-vh-75 { min-height: 75vh; }

/* Hero badges */
.hero-badge-wrap {
  position: relative;
  width: 320px;
  height: 320px;
}
.hero-badge {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,110,0.05);
  backdrop-filter: blur(4px);
  animation: float 4s ease-in-out infinite;
}
.hero-badge-2 { top: 100px; right: 0; animation-delay: -1.3s; width: 100px; height: 100px; }
.hero-badge-3 { bottom: 20px; left: 40px; animation-delay: -2.6s; width: 90px; height: 90px; }
.hero-badge-inner { text-align: center; }
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  display: block;
  font-weight: 600;
  line-height: 1;
}
.badge-txt {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-hint span {
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== TRUST BAR ===== */
.mntg-trust-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-item {
  padding: 20px 16px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--gold-muted); }
.trust-icon { font-size: 20px; margin-bottom: 6px; }
.trust-text {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== CATALOG ===== */
.section-header h2 { font-family: 'Cormorant Garamond', serif; }

/* Filter tabs */
.mntg-filter {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.mntg-filter:hover,
.mntg-filter.active {
  background: var(--gold-muted);
  border-color: var(--gold);
  color: var(--gold);
}

/* Product cards */
.mntg-product-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
}
.mntg-product-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.product-img-wrap {
  position: relative;
  height: 140px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.product-emoji { font-size: 44px; opacity: 0.7; }

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--black);
  font-size: 8px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
.product-badge-hot { background: #b5451b; color: #fff; }

.product-body { padding: 14px 16px 16px; }
.product-cat {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.product-name {
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.4;
}

.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}

.mntg-add-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  width: 30px;
  height: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
  line-height: 1;
}
.mntg-add-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: scale(1.08);
}

/* ===== ABOUT ===== */
.mntg-about { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.about-visual {
  text-align: center;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-logo-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 8px;
  line-height: 1;
  margin-bottom: 4px;
}
.about-logo-sub {
  font-size: 10px;
  letter-spacing: 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.about-deco-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 16px;
  opacity: 0.5;
}
.about-tagline {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stat-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: border-color var(--transition);
}
.stat-card:hover { border-color: var(--gold); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 10px; letter-spacing: 1.5px; color: var(--text-muted); text-transform: uppercase; }

/* ===== CTA BANNER ===== */
.mntg-cta-banner {
  background: linear-gradient(135deg, var(--dark-3) 0%, #1a1507 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ===== CONTACT ===== */
.contact-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.contact-icon { font-size: 28px; margin-bottom: 12px; }
.contact-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 6px; }
.contact-val { font-size: 13px; color: var(--text-body); margin: 0; }

/* ===== FOOTER ===== */
.mntg-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.footer-logo { font-size: 18px !important; }
.footer-desc { font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.footer-heading {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 12px; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.social-link {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius);
  text-transform: lowercase;
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-muted); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 16px; }
.footer-copy { font-size: 10px; letter-spacing: 1px; color: var(--text-muted); margin: 0; }

/* ===== INPUTS ===== */
.mntg-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  padding: 9px 14px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.mntg-input:focus { border-color: var(--gold); }
.mntg-input::placeholder { color: rgba(201,169,110,0.25); }

/* ===== CHAT OFFCANVAS ===== */
.mntg-offcanvas {
  background: var(--dark) !important;
  border-left: 1px solid var(--border) !important;
  width: 360px !important;
}
.border-gold { border-color: var(--border) !important; }
.chat-avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}
.chat-name { font-size: 14px; font-weight: 600; color: var(--gold-light); }
.chat-status { font-size: 9px; letter-spacing: 1px; color: #4ade80; }
.chat-messages { overflow-y: auto; }
.chat-msg { display: flex; }
.chat-msg.bot .msg-bubble {
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text-body);
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 2px 12px 12px 12px;
  max-width: 85%;
  line-height: 1.6;
}
.chat-msg.user { justify-content: flex-end; }
.chat-msg.user .msg-bubble {
  background: var(--gold-muted);
  border: 1px solid var(--border-mid);
  color: var(--gold-light);
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 12px 2px 12px 12px;
  max-width: 85%;
  line-height: 1.6;
}
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.quick-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
}
.quick-btn:hover { background: var(--gold-muted); border-color: var(--gold); }
.chat-input-wrap { background: var(--dark-2); }

/* ===== TOAST ===== */
.mntg-toast {
  background: var(--dark-2);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  color: var(--gold-light);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.toast-icon { color: #4ade80; font-size: 16px; font-weight: 700; }
.toast-msg { font-size: 12px; letter-spacing: 0.5px; }

/* ===== NAVBAR TOGGLER FIX ===== */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,169,110,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===== HIDE ELEMENTS ===== */
.product-item.hidden { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .mntg-hero { min-height: 70vh; }
  .mntg-hero-title { font-size: 32px; }
  .mntg-logo { font-size: 18px; }
  .logo-sub { display: none; }
  .mntg-offcanvas { width: 100vw !important; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
}
