/* ==========================================
   AROYE OBA MULTIMEDIA CONCEPT — STYLE.CSS
   Premium African Luxury Business Platform
   Font: Cinzel | Gold/Brown/Wine/Black
   ========================================== */

:root {
  --gold: #c9a24c;
  --gold-light: #dbb96e;
  --gold-dark: #8a6828;
  --brown: #2d1a12;
  --brown-deep: #120b08;
  --wine: #7b1f1f;
  --charcoal: #0b0a0a;
  --text: #efe7d0;
  --text-muted: #c8b891;
  --bg-dark: #0e0c0a;
  --bg-section: #110f0c;
  --bg-card: rgba(201, 162, 76, 0.04);
  --border: rgba(201, 162, 76, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-sm: 8px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }

body {
  font-family: 'Cinzel', serif;
  color: var(--text);
  background: var(--bg-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.text-gold { color: var(--gold); }

/* ==================== PRELOADER ==================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--brown-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-ring {
  width: 56px; height: 56px;
  border: 2px solid rgba(201, 162, 76, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}
.preloader-brand {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==================== SCROLL PROGRESS ==================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--wine));
  width: 0%;
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ==================== NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0; width: 100%;
  background: rgba(14, 12, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 500;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(14, 12, 10, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.2rem; font-weight: 800; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase;
}
.nav-logo:hover { color: var(--gold-light); }
.nav-logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav-menu {
  display: flex; gap: 1.5rem; align-items: center;
}
.nav-menu a {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-menu a:hover,
.nav-menu a:hover::after { color: var(--gold); width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 76, 0.35);
  color: var(--gold);
  background: rgba(201, 162, 76, 0.08);
  font-size: 1rem;
  transition: var(--transition);
}
.nav-cart:hover {
  color: var(--brown-deep);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px) scale(1.05);
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--wine);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-whatsapp {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: #25d366;
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  transition: var(--transition);
}
.nav-whatsapp:hover { background: #1da851; color: white; transform: scale(1.05); }

/* ==================== NAV SEARCH ==================== */
.nav-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 162, 76, 0.08);
  border: 1px solid rgba(201, 162, 76, 0.35);
  border-radius: 20px;
  padding: 0.3rem 0.6rem;
  transition: var(--transition);
}
.nav-search:focus-within {
  border-color: var(--gold);
  background: rgba(201, 162, 76, 0.12);
}
.nav-search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 0.85rem;
  padding: 0.3rem 0.5rem;
  outline: none;
  width: 120px;
  font-family: 'Cinzel', serif;
}
.nav-search-input::placeholder {
  color: var(--text-muted);
}
.nav-search-btn {
  background: transparent;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.2rem 0.4rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-search-btn:hover {
  color: var(--gold-light);
  transform: scale(1.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 600;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,11,8,0.85) 0%, rgba(18,11,8,0.7) 50%, rgba(18,11,8,0.9) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
  padding: 2rem 1.5rem;
}
.hero-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--text), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.hero-stat .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-deep);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--brown-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 76, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--brown-deep);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.75rem; }
.btn-xl { padding: 1rem 2.5rem; font-size: 0.9rem; }
.btn-block { width: 100%; justify-content: center; }

/* ==================== SECTION HEADERS ==================== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.title-line {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 0.8rem auto 1rem;
  border-radius: 2px;
}
.section-desc {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==================== ABOUT ==================== */
.about-section { background: var(--bg-section); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.about-text h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.about-text p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.about-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.pillar-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 162, 76, 0.1);
}
.pillar-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.pillar-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.pillar-card p { font-size: 0.85rem; color: var(--text-muted); }

.about-stats-bar {
  display: flex;
  justify-content: space-around;
  background: linear-gradient(135deg, rgba(201,162,76,0.08), rgba(123,31,31,0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.stat-block { text-align: center; }
.stat-block .stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
}
.stat-block span:last-child {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==================== SERVICES ==================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.service-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.service-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }
.service-img {
  width: 100%;
  border-radius: var(--radius-sm);
  opacity: 0.85;
  transition: var(--transition);
}
.service-card:hover .service-img { opacity: 1; }

/* ==================== SEARCH SECTION ==================== */
.search-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--bg-section) 0%, rgba(45, 26, 18, 0.8) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.search-header {
  text-align: center;
  margin-bottom: 2rem;
}
.search-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.search-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.search-container {
  display: flex;
  gap: 0.8rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.search-input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  transition: var(--transition);
}
.search-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 162, 76, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 162, 76, 0.1);
}
.search-input::placeholder {
  color: var(--text-muted);
}
.search-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.search-results.hidden {
  display: none;
}
.search-result-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.search-result-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201, 162, 76, 0.15);
}
.search-result-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.search-result-body {
  padding: 1rem;
}
.search-result-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.search-result-price {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.search-result-action {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.search-result-action a {
  flex: 1;
  padding: 0.4rem 0.6rem;
  text-align: center;
  border-radius: 4px;
  transition: var(--transition);
}

/* ==================== PROMO BANNER ==================== */
.promo-banner {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.promo-parallax {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.promo-overlay {
  position: absolute; inset: 0;
  background: rgba(18, 11, 8, 0.8);
}
.promo-text {
  position: relative; z-index: 2;
  padding: 2rem;
}
.promo-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  margin-bottom: 0.8rem;
}
.promo-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ==================== PRODUCTS ==================== */
.products-section { background: var(--bg-section); }

/* Star Product */
.star-product {
  background: linear-gradient(135deg, rgba(201,162,76,0.06), rgba(123,31,31,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 3rem;
}
.star-product-header {
  text-align: center;
  margin-bottom: 2rem;
}
.star-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--brown-deep);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.star-product-header h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}
.star-subtitle { color: var(--text-muted); font-size: 0.95rem; }
.star-product-body {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.star-product-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.star-product-img img { border-radius: var(--radius); }
.star-price {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--brown-deep);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 800;
  font-size: 1.1rem;
}
.star-product-info h4 {
  font-size: 1.15rem;
  color: var(--gold);
  margin: 1.5rem 0 0.8rem;
}
.star-product-info h4:first-child { margin-top: 0; }
.star-product-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.star-product-gallery {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.star-product-gallery img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(201, 162, 76, 0.03);
  padding: 0.5rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
.benefit-item {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201, 162, 76, 0.06);
}
.benefit-num {
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.8rem;
  width: 24px;
}
.benefit-item strong { color: var(--text); }

/* Ingredients */
.ingredients-section { margin-top: 2rem; }
.ingredients-title {
  text-align: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.ingredient-card {
  background: rgba(201, 162, 76, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  transition: var(--transition);
}
.ingredient-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.ing-emoji { font-size: 1.5rem; display: block; margin-bottom: 0.4rem; }
.ingredient-card h5 { font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--gold-light); }
.ingredient-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* Product Catalog */
.catalog-header {
  text-align: center;
  margin-bottom: 2rem;
}
.catalog-header h3 { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.5rem; }
.catalog-header p { color: var(--text-muted); font-size: 0.95rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 162, 76, 0.08);
}
.product-card-img {
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 76, 0.03);
  padding: 1rem;
}
.product-card-img img {
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 1.2rem; }
.product-badge {
  display: inline-block;
  background: rgba(201, 162, 76, 0.15);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}
.product-card-body h5 { font-size: 1rem; margin-bottom: 0.4rem; }
.product-card-body p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.8rem; line-height: 1.5; }
.product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* All Products Banner */
.all-products-banner {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.all-products-banner img { width: 100%; }

/* Combo Section */
.combo-section { margin-top: 3rem; }
.combo-title {
  text-align: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.combo-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.combo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.combo-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.combo-card > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.combo-card-body { padding: 1.2rem; }
.combo-card-body h5 { font-size: 1rem; margin-bottom: 0.3rem; }
.combo-card-body p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.combo-price {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* Combo Gallery */
.combo-gallery { margin-top: 2.5rem; }
.combo-gallery h4 {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.combo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.8rem;
}
.combo-gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.combo-gallery-grid img:hover {
  border-color: var(--gold);
  transform: scale(1.03);
}

/* ==================== PACKAGES ==================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.package-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(201, 162, 76, 0.1);
}
.package-popular, .package-elite {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,162,76,0.08), rgba(123,31,31,0.06));
}
.popular-badge, .elite-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--brown-deep);
  padding: 0.2rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.elite-badge { background: var(--wine); color: var(--text); }
.package-header h4 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.package-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.package-features {
  text-align: left;
  margin-bottom: 1.5rem;
}
.package-features li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(201, 162, 76, 0.06);
}
.package-features li i {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.packages-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.packages-visual img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ==================== EARNING ==================== */
.earning-section { background: var(--bg-section); }
.earning-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.earn-pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.earn-pillar:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.earn-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.earn-pillar h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.earn-pillar p { font-size: 0.85rem; color: var(--text-muted); }
.earn-pillar strong { color: var(--gold-light); }

/* 13 Ways to Earn */
.ways-to-earn {
  background: linear-gradient(135deg, rgba(201,162,76,0.04), rgba(123,31,31,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.ways-to-earn h3 {
  text-align: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.ways-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.way-card {
  background: rgba(201, 162, 76, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  transition: var(--transition);
}
.way-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.way-num {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.way-card h5 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.way-card p { font-size: 0.8rem; color: var(--text-muted); }

/* ==================== AWARDS ==================== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.award-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.award-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 162, 76, 0.1);
}
.award-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.award-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.award-card p { font-size: 0.85rem; color: var(--text-muted); }

.awards-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.awards-media img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
}

/* ==================== OPPORTUNITY ==================== */
.opportunity-section { background: var(--bg-section); }
.opp-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.opp-content h3 { font-size: 1.4rem; color: var(--gold); margin-bottom: 1rem; }
.opp-content > p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.opp-highlights { display: flex; flex-direction: column; gap: 1.2rem; }
.opp-item {
  display: flex; gap: 1rem; align-items: start;
}
.opp-item > i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.opp-item h5 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.opp-item p { font-size: 0.82rem; color: var(--text-muted); }
.opp-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* How to Start */
.how-to-start { margin-top: 2rem; }
.how-to-start h3 {
  text-align: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 2rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step-card {
  text-align: center;
  padding: 1.5rem;
}
.step-num {
  display: inline-block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.step-card h5 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ==================== TESTIMONIALS ==================== */
.testimonials-section { background: var(--bg-dark); }
.testimony-banner {
  margin-bottom: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.testimony-banner img { width: 100%; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); }
.testimonial-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.testimonial-stars { color: var(--gold); margin-bottom: 0.8rem; font-size: 0.9rem; }
.testimonial-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}
.t-author {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
}

/* Video Testimonials */
.video-testimonials {
  margin-top: 3rem;
}
.video-testimonials h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.video-card-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
}
.video-card-item:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(201, 162, 76, 0.2);
}
.video-card-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 162, 76, 0);
  transition: background 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.video-card-item:hover::before {
  background: rgba(201, 162, 76, 0.1);
}
.video-card-item video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.video-card-item .video-label {
  padding: 0.8rem;
  font-size: 0.85rem;
  color: var(--text);
  text-align: center;
  background: linear-gradient(135deg, rgba(14, 12, 10, 0.9), rgba(45, 26, 18, 0.9));
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ==================== STORE / CHECKOUT ==================== */
.shop-page {
  padding-top: 92px;
  min-height: 100vh;
  background: var(--bg-dark);
}
.shop-header {
  text-align: center;
  margin-bottom: 2rem;
}
.shop-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text);
  margin-bottom: 0.4rem;
}
.shop-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.shop-search {
  flex: 1;
  min-width: 220px;
  max-width: 480px;
  background: rgba(201, 162, 76, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  font-family: 'Cinzel', serif;
}
.shop-search:focus {
  outline: none;
  border-color: var(--gold);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}
.shop-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.shop-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.shop-card-media {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  background: rgba(201, 162, 76, 0.03);
}
.shop-card-media img {
  max-height: 100%;
  object-fit: contain;
}
.shop-card-body {
  padding: 1rem;
}
.shop-card-title {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.shop-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  min-height: 48px;
  margin-bottom: 0.6rem;
}
.shop-card-price {
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.shop-qty-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.shop-qty-row input {
  width: 72px;
  background: rgba(201, 162, 76, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.45rem;
  font-family: 'Cinzel', serif;
}
.shop-actions {
  display: flex;
  gap: 0.5rem;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: start;
}
.checkout-list,
.checkout-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.checkout-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(201, 162, 76, 0.08);
}
.checkout-item:last-child { border-bottom: 0; }
.checkout-item img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: rgba(201, 162, 76, 0.04);
  padding: 0.3rem;
}
.checkout-item h4 {
  font-size: 0.9rem;
}
.checkout-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.checkout-item-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.checkout-item-controls button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  background: rgba(201, 162, 76, 0.05);
  color: var(--gold);
  border-radius: 6px;
  cursor: pointer;
}
.checkout-item-controls input {
  width: 56px;
  text-align: center;
  background: rgba(201, 162, 76, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 6px;
  padding: 0.25rem;
  font-family: 'Cinzel', serif;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.summary-row.total {
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
  margin-top: 0.8rem;
  color: var(--text);
  font-weight: 700;
}
.empty-cart {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 1rem;
}

/* ==================== CONTACT ==================== */
.contact-section {
  background: linear-gradient(135deg, rgba(201,162,76,0.06), rgba(123,31,31,0.06));
  text-align: center;
}
.contact-content { max-width: 700px; margin: 0 auto; }
.contact-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.contact-direct {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.contact-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.social-links {
  display: flex; gap: 1rem; justify-content: center;
}
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--brown-deep);
  border-color: var(--gold);
}

/* ==================== FAQ ==================== */
.faq-section { background: var(--bg-section); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Cinzel', serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question i {
  color: var(--gold);
  font-size: 0.8rem;
  transition: transform 0.3s;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 1.2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--brown-deep);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-logo {
  width: 60px;
  border-radius: 50%;
  margin-bottom: 0.8rem;
}
.footer-col h4 {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a i { font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==================== FLOATING WHATSAPP ==================== */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 400;
  transition: var(--transition);
}
.floating-whatsapp:hover {
  background: #1da851;
  color: white;
  transform: scale(1.08);
}

/* ==================== FLOATING CART ==================== */
.floating-cart {
  position: fixed;
  bottom: 7rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(201, 162, 76, 0.4);
  z-index: 400;
  transition: var(--transition);
}
.floating-cart:hover {
  background: var(--gold-light);
  color: var(--charcoal);
  transform: scale(1.08);
}
.floating-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--wine);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  border: 2px solid var(--charcoal);
}

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .earning-pillars { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .opp-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-visual { grid-template-columns: 1fr; }
  .star-product-body { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--brown-deep);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.5);
    z-index: 550;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 1rem; }
  .hamburger { display: flex; }

  .hero-stats { flex-direction: column; gap: 1rem; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-stats-bar { flex-direction: column; gap: 1.5rem; }
  .earning-pillars { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .awards-media { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .shop-actions { flex-direction: column; }
  .star-product-gallery { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
  .hero-title { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .product-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .combo-grid { grid-template-columns: 1fr; }
  .ways-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .combo-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-ctas { flex-direction: column; align-items: center; }
  .star-product { padding: 1.5rem; }
  .ways-to-earn { padding: 1.5rem; }
  .shop-grid { grid-template-columns: 1fr; }
  .checkout-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .checkout-item img {
    margin: 0 auto;
  }
  .checkout-item-controls {
    justify-content: center;
  }
  .floating-cart { bottom: 6.5rem; width: 50px; height: 50px; font-size: 1.3rem; }
  .floating-whatsapp { bottom: 1rem; width: 50px; height: 50px; font-size: 1.3rem; }
  .nav-search { width: 140px; }
  .nav-search-input { width: 100px; font-size: 0.8rem; }
  .search-container { flex-direction: column; }
  .search-results { grid-template-columns: 1fr; }
}
