@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C060;
  --black: #000000;
  --dark: #080808;
  --grey-900: #111111;
  --grey-800: #1A1A1A;
  --grey-700: #242424;
  --grey-600: #333333;
  --grey-400: #666666;
  --grey-200: #AAAAAA;
  --white: #FFFFFF;
  --green: #22C55E;
  --red: #EF4444;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: var(--black); color: var(--white); line-height: 1.6; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, 92%); margin-inline: auto; }
.section { padding: 72px 0; }
.section-title { font-family: var(--font-display); color: var(--gold); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.subtitle {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.announce-bar { background: var(--grey-900); border-bottom: 1px solid rgba(201,168,76,.25); color: var(--grey-200); text-align: center; font-size: .83rem; padding: 8px 12px; }
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 4%;
  min-height: 74px;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.navbar.scrolled { box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.brand {
  display: inline-flex;
  align-items: center;
  max-width: 170px;
  flex-shrink: 0;
}
.brand img {
  width: 100%;
  height: auto;
  display: block;
}
.nav-links { display: flex; gap: 20px; align-items: center; list-style: none; }
.nav-links a { color: var(--white); font-weight: 500; }
.nav-links a:hover { color: var(--gold); }

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.hamburger:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 74px;
  right: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  background: rgba(8,8,8,.98);
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  padding: 26px 20px 40px;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s ease, opacity .25s ease;
  z-index: 45;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  width: min(420px, 100%);
  text-align: center;
  font-size: 1.05rem;
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(17,17,17,.95);
}
.mobile-nav a:hover { border-color: var(--gold-light); color: var(--gold); }

.btn { display:inline-block; border:1px solid var(--gold); background: var(--gold); color: var(--black); padding: 10px 18px; border-radius: 999px; font-weight: 700; cursor: pointer; }
.btn:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--gold); }
.btn-sm { padding: 8px 14px; }
.hero { position: relative; min-height: 88vh; display: grid; align-items: end; overflow: hidden; }
.hero-bg { position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.9)), url('assets/img/hero-bg.jpg') center/cover; will-change: transform; }
.hero-content { position: relative; padding: 90px 0 42px; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 7vw, 4.4rem); max-width: 16ch; }
.hero p { color: var(--grey-200); max-width: 58ch; margin: 16px 0 24px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-row { display:flex; gap:14px; flex-wrap:wrap; margin-top: 24px; color: var(--grey-200); font-size: .92rem; }
.countdown-strip { position:relative; border-top:1px solid rgba(201,168,76,.18); background: rgba(8,8,8,.92); }
.countdown-grid { display:grid; grid-template-columns: repeat(4,minmax(80px,1fr)); gap: 12px; padding: 14px 0; }
.countdown-unit { text-align:center; border: 1px solid rgba(201,168,76,.28); border-radius: 10px; padding: 8px; background: var(--grey-900); }
.countdown-num { display:block; color: var(--gold); font-weight: 700; font-size: 1.2rem; }
.countdown-text { font-size: .8rem; color: var(--grey-200); }
.stats-bar { background: var(--grey-900); border-top: 1px solid rgba(201,168,76,.14); border-bottom: 1px solid rgba(201,168,76,.14); }
.stats-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 12px; text-align: center; padding: 20px 0; }
.stat-num { font-family: var(--font-display); color: var(--gold); font-size: 2rem; }
.features-strip { background: var(--dark); border-bottom: 1px solid rgba(201,168,76,.1); }
.features-strip .features-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:14px; padding: 26px 0; }
.feature-item { background: var(--grey-900); border: 1px solid rgba(201,168,76,.16); border-radius: 12px; padding: 16px; text-align:center; }
.feature-item i { color: var(--gold); margin-bottom: 6px; font-size: 1.2rem; }
/* Alias for legacy HTML class name */
.features-bar { background: var(--dark); border-bottom: 1px solid rgba(201,168,76,.1); }
.features-bar .features-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:14px; padding: 26px 0; }
.split { display:grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: center; }
.split img { width: 100%; border-radius: 16px; border: 1px solid rgba(201,168,76,.2); }
input, textarea, select { width: 100%; margin-bottom: 10px; background: var(--grey-800); border: 1px solid var(--grey-600); color: var(--white); border-radius: 10px; padding: 11px; }
.product-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 16px; margin-top: 20px; }
.card { transition: .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(201,168,76,.18); }
.card img { width: 100%; border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; margin-bottom: 10px; }
.card button { width: 100%; border: 0; background: var(--gold); color: var(--black); padding: 10px; border-radius: 10px; font-weight: 700; }
.cart-layout { display:grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.cart-item { display:flex; justify-content: space-between; gap: 8px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.cart-item button { border:0; background: transparent; color: var(--red); cursor: pointer; }
.cart-summary .final { font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.blog-row { display:grid; grid-template-columns: .9fr 1.1fr; gap: 16px; margin-bottom: 16px; background: var(--grey-900); border: 1px solid rgba(201,168,76,.16); border-radius: 14px; padding: 12px; }
.blog-row img { width: 100%; border-radius: 10px; }
.review-swiper { margin: 16px 0; }
.footer { border-top: 1px solid rgba(201,168,76,.2); margin-top: 42px; background: #040404; }
.footer-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 16px; padding: 30px 0; }
.footer h3, .footer h4 { color: var(--gold); margin-bottom: 10px; }
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer a:hover { color: var(--gold); }
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(201,168,76,.08);
}
.social-links a {
  color: var(--grey-400);
  font-size: 1.4rem;
  transition: color .3s;
}
.social-links a:hover { color: var(--gold); }
.footer-legal { border-top: 1px solid rgba(255,255,255,.07); text-align: center; padding: 14px; color: var(--grey-200); font-size: .9rem; }
.whatsapp-float { position: fixed; right: 16px; bottom: 16px; width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: white; display:grid; place-items:center; font-size: 1.5rem; box-shadow: 0 8px 20px rgba(0,0,0,.3); z-index: 60; }
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
.success-wrap { min-height: 75vh; display:grid; place-items:center; }
.success-card { text-align:center; max-width: 560px; margin:auto; }
.success-card i { color: var(--green); font-size: 4rem; margin-bottom: 12px; }

@media (max-width: 920px) {
  .navbar { min-height: 70px; }
  .brand { max-width: 142px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-nav { top: 70px; }
  .features-strip .features-grid,
  .features-bar .features-grid,
  .stats-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .split, .contact-grid, .cart-layout, .blog-row { grid-template-columns: 1fr; }
  .hero { min-height: 82vh; }
  .hero-content { padding: 72px 0 30px; }
}
.contact-grid, .split {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
}

.contact-grid iframe {
    width: 100% !important; /* Forces map to fill the screen */
    height: 350px;
    border-radius: 12px;
}
@media (max-width: 640px) {
  .container { width: min(1160px, 94%); }
  .section { padding: 54px 0; }
  .announce-bar { font-size: .76rem; }
  .hero h1 { font-size: clamp(1.9rem, 10vw, 2.8rem); }
  .hero p { font-size: .95rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .trust-row { font-size: .85rem; gap: 10px; }
  .countdown-grid { grid-template-columns: repeat(2,minmax(90px,1fr)); }
  .contact-form,
  .checkout-form,
  .card,
  .policy-box,
  .cart-summary { padding: 14px; }
  .cart-item { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .social-links { gap: 16px; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.35rem; right: 12px; bottom: 12px; }
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}


.mobile-nav {
    /* Ensure this is strictly controlled */
    position: fixed;
    top: 0;
    right: -100%; /* Or wherever you hide it */
    width: 250px; /* Example width */
    height: 100vh;
    z-index: 1000;
    transition: 0.3s ease;
}

/* When the menu is active */
.mobile-nav.active {
    right: 0;
}