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

:root {
  --gold:    #C9A84C;
  --gold2:   #e8c96a;
  --dark:    #0d0500;
  --dark2:   #1a0a00;
  --dark3:   #2a1500;
  --cream:   #fdf6e3;
  --cream2:  #f5ead0;
  --text:    #2c1a00;
  --muted:   #7a6040;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,5,0,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: #fff; letter-spacing: 0.5px;
}
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex; list-style: none; gap: 32px; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: #000 !important;
  padding: 8px 20px; border-radius: 4px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold2) !important; }

.burger {
  display: none; background: none; border: none;
  color: var(--gold); font-size: 1.5rem; cursor: pointer;
}
.mobile-menu {
  display: none; list-style: none;
  background: var(--dark2); padding: 12px 24px 20px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.mobile-menu.open { display: block; }
.mobile-menu li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.95rem; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex; align-items: center;
  padding: 100px 24px 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 50%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/product_p2_1.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.hero-content {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); font-size: 0.78rem;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,0.65); font-size: 1rem;
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-gold {
  background: var(--gold); color: #000;
  padding: 14px 32px; border-radius: 4px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none; letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-gold.full { width: 100%; text-align: center; border: none; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 1rem; }

.btn-outline {
  border: 1px solid rgba(201,168,76,0.5); color: var(--gold);
  padding: 14px 32px; border-radius: 4px;
  font-weight: 500; font-size: 0.9rem;
  text-decoration: none; letter-spacing: 0.5px;
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

.hero-visual {
  display: flex; flex-direction: column; gap: 16px;
}
.choc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px; padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  transition: border-color 0.3s, background 0.3s;
}
.choc-card:hover {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.06);
}
.choc-icon { font-size: 2rem; }
.choc-card p { color: #fff; font-weight: 600; font-size: 1rem; }
.choc-card span { color: var(--gold); font-size: 0.82rem; }

/* ── Section shared ── */
.section-tag {
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 12px;
  display: block;
}
.section-tag.center { text-align: center; }
h2.center { text-align: center; }
.section-sub {
  color: var(--muted); font-size: 1rem; line-height: 1.7;
  max-width: 560px; margin: 12px auto 48px;
}
.section-sub.center { text-align: center; }

/* ── About ── */
.about {
  padding: 100px 24px;
  background: var(--cream2);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-text h2 { font-size: 2.2rem; margin-bottom: 20px; line-height: 1.2; }
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.about-stats {
  display: flex; gap: 32px; margin-top: 36px;
  padding-top: 32px; border-top: 1px solid rgba(201,168,76,0.2);
}
.stat span { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 700; }
.stat p { font-size: 0.8rem; color: var(--muted); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }

.about-visual { display: flex; justify-content: center; align-items: center; }
.about-badge {
  width: 200px; height: 200px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

/* ── Products ── */
.products {
  padding: 100px 24px;
  background: var(--dark);
}
.products h2 { color: #fff; }
.products .section-sub { color: rgba(255,255,255,0.5); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.45);
}
.product-img {
  height: 220px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02));
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-body { padding: 20px; }
.product-tag {
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; display: block;
}
.product-body h3 { color: #fff; font-size: 1.05rem; margin-bottom: 8px; }
.product-body p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; }
.product-badge {
  display: inline-block; margin-top: 12px;
  background: rgba(201,168,76,0.15); color: var(--gold);
  font-size: 0.7rem; padding: 3px 10px; border-radius: 10px;
  letter-spacing: 1px;
}

/* ── Why ── */
.why {
  padding: 100px 24px;
  background: var(--cream2);
}
.why h2 { font-size: 2.2rem; margin-bottom: 48px; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.why-card {
  background: #fff; border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(201,168,76,0.15);
  transition: box-shadow 0.3s, transform 0.3s;
}
.why-card:hover {
  box-shadow: 0 8px 32px rgba(201,168,76,0.12);
  transform: translateY(-3px);
}
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark2); }
.why-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

/* ── Contact ── */
.contact {
  padding: 100px 24px;
  background: var(--dark);
}
.contact h2 { color: #fff; }
.contact .section-sub { color: rgba(255,255,255,0.5); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-icon { font-size: 1.4rem; margin-top: 2px; }
.contact-item strong { color: #fff; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 4px; }
.contact-item p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px; padding: 13px 16px;
  color: #fff; font-family: 'Inter', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form select { color: rgba(255,255,255,0.5); }
.contact-form select option { background: var(--dark2); color: #fff; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.form-note { color: var(--gold); font-size: 0.85rem; text-align: center; min-height: 20px; }

/* ── Footer ── */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 32px 24px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { flex-direction: row; flex-wrap: wrap; }
  .choc-card { flex: 1; min-width: 140px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .hero { padding: 90px 20px 50px; }
  .hero h1 { font-size: 2rem; }
  .about, .products, .why, .contact { padding: 70px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ── Catalog ── */
.catalog {
  padding: 100px 24px;
  background: var(--cream);
}
.catalog h2 { font-size: 2.2rem; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.catalog-thumb {
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  background: var(--dark2);
}
.catalog-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  border-color: var(--gold);
}
.catalog-thumb img {
  width: 100%; display: block;
  aspect-ratio: 1/1; object-fit: cover;
}
.catalog-thumb .page-num {
  text-align: center; padding: 6px;
  font-size: 0.7rem; color: var(--muted);
  letter-spacing: 1px;
}

/* ── Lightbox ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  border-radius: 8px; object-fit: contain;
  box-shadow: 0 0 60px rgba(201,168,76,0.2);
}
.lightbox-close {
  position: fixed; top: 20px; right: 28px;
  color: #fff; font-size: 2.5rem; cursor: pointer;
  background: none; border: none; line-height: 1;
  opacity: 0.7; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(201,168,76,0.2); border: 1px solid var(--gold);
  color: var(--gold); font-size: 1.8rem;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(201,168,76,0.4); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.85rem; letter-spacing: 2px;
}

/* ── WhatsApp Float Button ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25D366; border-radius: 50%;
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ── Brands Section ── */
.brands-section { padding: 100px 24px; background: var(--dark); }
.brands-section h2 { color: #fff; }
.brands-section .section-sub { color: rgba(255,255,255,0.5); }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.brand-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.5);
}
.brand-header {
  padding: 32px 28px 24px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.beemax-header { background: linear-gradient(135deg, #1a0a00, #2a1500); }
.gramas-header { background: linear-gradient(135deg, #0a1a00, #152500); }
.cta-header    { background: linear-gradient(135deg, #0a0a1a, #151525); }

.brand-logo-wrap { display: flex; align-items: center; gap: 14px; }
.brand-logo-wrap h3 { color: #fff; font-size: 1.4rem; }
.brand-tag {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 0.7rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  white-space: nowrap;
}
.brand-body { padding: 24px 28px 32px; }
.brand-body p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.brand-highlights { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.brand-highlights li { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.brand-highlights li { color: rgba(255,255,255,0.7); }

.brand-card-cta .brand-highlights li { color: rgba(255,255,255,0.55); }

@media (max-width: 640px) {
  .brands-section { padding: 70px 20px; }
  .brands-grid { grid-template-columns: 1fr; }
}
