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

:root {
  --black: #0a0a0a;
  --dark-brown: #1a0d00;
  --brown: #2d1810;
  --gold: #d4a574;
  --gold-light: #e8b887;
  --white: #ffffff;
  --cream: #f5f1ed;
  --text-muted: #8b7355;
  --border: rgba(212, 165, 116, 0.2);
  --header-height: 140px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.logo-text .sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 2.5rem;
}

nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

nav a:hover,
nav a.active {
  color: var(--gold);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.mobile-nav a.active {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-btn {
  background: transparent;
  border: 1px solid rgba(212, 165, 116, 0.3);
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.icon-btn:hover {
  background: rgba(212, 165, 116, 0.1);
  border-color: var(--gold);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--black);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-order {
  background: var(--gold);
  color: var(--black);
  padding: 0.65rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-order:hover {
  background: transparent;
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
  display: none;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid rgba(212, 165, 116, 0.1);
  padding: 1rem 0;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 2rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(212, 165, 116, 0.1);
  color: var(--gold);
}

/* HERO SECTION */
.hero-dark {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0d00 100%);
  padding: var(--header-height) 2rem 80px;
  position: relative;
  overflow: hidden;
}

.hero-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 165, 116, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.3);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  stroke: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.title-highlight {
  display: block;
  color: var(--white);
}

.title-gold {
  display: block;
  color: var(--gold);
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 0.6rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.btn-whatsapp {
  background: transparent;
  color: var(--white);
  padding: 0.6rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-whatsapp:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  stroke: var(--gold);
}

.feature-text {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.feature-text strong {
  color: var(--white);
  display: block;
  font-weight: 700;
}

/* HERO RIGHT */
.hero-right {
  position: relative;
}

.product-showcase {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(135deg, #1a0500, #4a2000);
}

/* Placeholder div injected by onerror for hero image */
.product-showcase > div:not(.rating-badge) {
  position: absolute;
  inset: 0;
  border-radius: 20px;
}

.rating-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--black);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.rating-stars {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.rating-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.rating-count {
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.3;
  opacity: 0.9;
}

.hero-product-img {
  width: 100%;
  height: 420px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* PRODUCTS SECTION */
.products-section {
  background: var(--black);
  padding: 5rem 2rem;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.products-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.product-box {
  background: linear-gradient(135deg, #1a0d00 0%, #2d1810 100%);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.product-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-box:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.product-box:hover::before {
  opacity: 1;
}

.product-box-img {
  width: 100%;
  height: 210px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: linear-gradient(160deg, #1a0d00 0%, #2a1205 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-box-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  transition: transform 0.4s;
}

/* Placeholder div injected by onerror when image is missing */
.product-box-img > div {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  min-height: unset !important;
  border-radius: 12px;
}

.product-box:hover .product-box-img img {
  transform: scale(1.1);
}

.product-box-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 1rem;
}

.product-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--black);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.product-box:hover .product-arrow {
  transform: scale(1.1);
}

/* WHY SECTION */
.why-section {
  background: var(--dark-brown);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(212, 165, 116, 0.1);
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-item {
  text-align: center;
  padding: 2rem 1rem;
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.why-item:hover .why-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.why-icon svg {
  stroke: var(--gold);
}

.why-item:hover .why-icon svg {
  stroke: var(--black);
}

.why-item h3 {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--white);
  font-weight: 600;
}

/* FOOTER */
/* ============================================================
   FOOTER — FULL REDESIGN
   ============================================================ */

/* CTA STRIP */
.site-footer {
  background: #0d0700;
  position: relative;
}

.footer-cta-strip {
  background: linear-gradient(135deg, #b8821e 0%, #d4a843 40%, #c8922a 100%);
  padding: 2rem;
}

.footer-cta-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-cta-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0a0400;
}

.footer-cta-sub {
  font-size: 0.9rem;
  color: rgba(10,4,0,0.75);
  font-weight: 500;
}

.footer-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.footer-cta-btn.primary {
  background: #0a0400;
  color: #d4a843;
  border: 2px solid #0a0400;
}

.footer-cta-btn.primary:hover {
  background: transparent;
  color: #0a0400;
  border-color: #0a0400;
}

.footer-cta-btn.outline {
  background: transparent;
  color: #0a0400;
  border: 2px solid rgba(10,4,0,0.5);
}

.footer-cta-btn.outline:hover {
  background: #0a0400;
  color: #d4a843;
}

/* MAIN FOOTER BODY */
.footer-body {
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid rgba(212,168,67,0.12);
}

.footer-main-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 4rem;
}

/* BRAND COLUMN */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  mix-blend-mode: screen;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.footer-about {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.2);
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-badge span {
  color: #5ecb5e;
  font-weight: 700;
}

.footer-social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.fsocial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
}

.fsocial:hover {
  background: var(--gold);
  color: #0a0400;
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,168,67,0.3);
}

/* LINK COLUMNS */
.footer-links-col {
  display: flex;
  flex-direction: column;
}

.footer-col-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-col-line {
  width: 3px;
  height: 22px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 3px;
  flex-shrink: 0;
}

.footer-col-head h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link-list li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.25s;
}

.footer-link-list li a svg {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.footer-link-list li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-link-list li a:hover svg {
  transform: translateX(3px);
}

/* CONTACT LIST */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.fcontact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.fcontact-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.fcontact-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fcontact-text a,
.fcontact-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.25s;
  line-height: 1.4;
}

.fcontact-text a:hover {
  color: var(--gold);
}

/* BOTTOM BAR */
.footer-bar {
  padding: 1.25rem 2rem;
  background: rgba(0,0,0,0.5);
}

.footer-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bar-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bar-copy span {
  color: var(--gold);
  font-weight: 600;
}

.footer-bar-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bar-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-bar-links a:hover {
  color: var(--gold);
}

.fbar-divider {
  color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
}

/* RESPONSIVE FOOTER */
@media (max-width: 1100px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-cta-actions {
    justify-content: center;
  }
  .footer-bar-inner {
    flex-direction: column;
    text-align: center;
  }
}


@media (max-width: 1200px) {
  .products-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 100px;
  }

  nav,
  .header-actions .icon-btn,
  .btn-order {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .products-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .stats-row,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 90px;
  }

  .products-showcase,
  .why-grid,
  .stats-row,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================================
   PAGE HERO (about.html & contact.html)
   ============================================================ */
.page-hero {
  min-height: 40vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0d00 60%, #2d1810 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 40px) 2rem 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(212,165,116,0.07) 0%, transparent 55%),
    radial-gradient(circle at 75% 40%, rgba(212,165,116,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   CONTENT SECTIONS (about.html & contact.html)
   ============================================================ */
.content-section {
  background: var(--black);
  padding: 5rem 2rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.content-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.content-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 1.5rem 0 0.5rem;
}

.content-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.content-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(212,165,116,0.15);
}

.content-img img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.content-img:hover img {
  transform: scale(1.04);
}

/* ============================================================
   STATS ROW (about.html)
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-box {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #1a0d00, #2d1810);
  border: 1px solid rgba(212,165,116,0.2);
  border-radius: 16px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.stat-box:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   VALUES GRID (about.html)
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: linear-gradient(135deg, #1a0d00, #2d1810);
  border: 1px solid rgba(212,165,116,0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   CONTACT GRID & FORM (contact.html)
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: linear-gradient(135deg, #1a0d00, #2d1810);
  border: 1px solid rgba(212,165,116,0.15);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.contact-item:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212,165,116,0.1);
  border: 1px solid rgba(212,165,116,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-details a,
.contact-details p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s;
}

.contact-details a:hover {
  color: var(--gold);
}

/* CONTACT FORM */
.contact-form {
  background: linear-gradient(135deg, #130800, #221005);
  border: 1px solid rgba(212,165,116,0.2);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,165,116,0.25);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(212,165,116,0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

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

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.04em;
}

.btn-submit:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,165,116,0.25);
}

/* ============================================================
   OLD FOOTER (about.html & contact.html use this older markup)
   ============================================================ */
footer {
  background: #0d0700;
  padding: 0;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212,165,116,0.12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-logo img {
  height: 90px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.footer-logo .sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212,165,116,0.08);
  border: 1px solid rgba(212,165,116,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--gold);
  color: #0a0400;
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,165,116,0.25);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(212,165,116,0.3);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.25s;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

/* Contact list in old footer */
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
}

.contact-list li svg {
  color: var(--gold);
  flex-shrink: 0;
}

.contact-list li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s;
}

.contact-list li a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ============================================================
   WHATSAPP FLOATING ACTION BUTTON
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}

.wa-fab svg {
  width: 30px;
  height: 30px;
}

.wa-fab:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}

/* ============================================================
   RESPONSIVE – INNER PAGES
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid,
  .values-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .wa-fab {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

/* CALL BUTTON IN NAVBAR */
.btn-call {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--gold);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  border: 1.5px solid rgba(212, 165, 116, 0.4);
  transition: all 0.3s;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.btn-call:hover {
  background: rgba(212, 165, 116, 0.1);
  border-color: var(--gold);
}

/* =============================================
   COMING SOON PRODUCT CARDS
   ============================================= */

/* Card shell — no hover lift */
.cs-card {
  cursor: default;
  position: relative;
}
.cs-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Image area */
.cs-img {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: radial-gradient(ellipse at 50% 60%, #2e1200 0%, #120700 100%);
  border-radius: 10px;
  overflow: hidden;
  gap: 12px;
}

/* Subtle diagonal stripe texture */
.cs-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 10px,
    rgba(212, 168, 67, 0.04) 10px,
    rgba(212, 168, 67, 0.04) 11px
  );
  pointer-events: none;
}

/* Pulsing golden glow blob */
.cs-glow {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.18) 0%, transparent 70%);
  animation: cs-pulse 2.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cs-pulse {
  0%, 100% { transform: scale(1);   opacity: 0.7; }
  50%       { transform: scale(1.4); opacity: 1;   }
}

/* Floating emoji */
.cs-emoji {
  font-size: 2.8rem;
  z-index: 1;
  animation: cs-float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 10px rgba(212,168,67,0.3));
}
@keyframes cs-float {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(-7px); }
}

/* "Coming Soon" pill */
.cs-pill {
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a843;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.35);
  padding: 4px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* Gold star after product name */
.cs-star {
  font-size: 0.65rem;
  color: #d4a843;
  vertical-align: middle;
  letter-spacing: 1px;
}

/* Arrow button — muted, not clickable */
.cs-arrow {
  background: rgba(212, 168, 67, 0.07) !important;
  color: rgba(212, 168, 67, 0.4) !important;
  cursor: default !important;
  font-size: 1rem !important;
  border: 1px solid rgba(212, 168, 67, 0.2) !important;
}

/* Footer coming-soon list items */
.footer-cs-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(212, 168, 67, 0.55);
  font-size: 0.85rem;
  padding: 4px 0;
  font-style: italic;
}
.footer-cs-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d4a843;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.25);
  padding: 1px 7px;
  border-radius: 20px;
  margin-left: 4px;
}

/* ===========================
   QUALITY PROCESS TIMELINE
   =========================== */
.qp-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1209 50%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}
.qp-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.qp-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* vertical centre line */
.qp-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(212,168,67,0.6) 10%, rgba(212,168,67,0.6) 90%, transparent);
  transform: translateX(-50%);
}

.qp-step {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 3.5rem;
  position: relative;
}

.qp-left {
  flex-direction: row;
}
.qp-right {
  flex-direction: row-reverse;
}

/* card */
.qp-card {
  width: calc(50% - 48px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,67,0.18);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  backdrop-filter: blur(4px);
}
.qp-card:hover {
  transform: translateY(-4px);
  background: rgba(212,168,67,0.07);
  border-color: rgba(212,168,67,0.45);
}

.qp-left .qp-card {
  margin-right: auto;
}
.qp-right .qp-card {
  margin-left: auto;
}

.qp-icon-wrap {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(212,168,67,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qp-body {
  flex: 1;
}

.qp-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  opacity: 0.85;
}

.qp-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.6rem;
}

.qp-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* centre node circle */
.qp-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a843, #c8923a);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(212,168,67,0.15), 0 0 20px rgba(212,168,67,0.3);
  flex-shrink: 0;
}
.qp-node span {
  font-size: 0.85rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.03em;
}

/* mobile: stack vertically */
@media (max-width: 700px) {
  .qp-timeline::before { display: none; }
  .qp-step {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 0.75rem;
    padding-left: 72px;
    position: relative;
  }
  .qp-node {
    position: absolute;
    left: 0;
    top: 0;
    transform: none;
    width: 48px;
    height: 48px;
  }
  .qp-card {
    width: 100% !important;
    margin: 0 !important;
  }
}

/* ─── CUSTOMER REVIEWS ────────────────────────────── */
.reviews-section { background: var(--bg); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.review-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 16px;
  padding: 2rem 1.75rem 1.5rem;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.5);
}

.review-quote-icon {
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  font-family: Georgia, serif;
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.review-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #1a1a1a;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.review-author-info strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}
.review-author-info span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.review-verified {
  font-size: 0.75rem;
  color: #4ade80;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Reviews trust strip */
.reviews-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 16px;
  padding: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
  text-align: center;
}
.trust-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.trust-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(212,175,55,0.25);
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .trust-stat { padding: 0.5rem 1rem; }
  .reviews-trust-strip { gap: 0; }
}

/* ─── MAIN PRODUCT FEATURE (Hakka Noodles) ─────────── */
.main-product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.03));
  border: 2px solid rgba(212,175,55,0.35);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 4rem;
  padding: 2.5rem;
}
@media (max-width: 768px) {
  .main-product-feature {
    grid-template-columns: 1fr;
    padding: 1.75rem;
    gap: 1.75rem;
  }
}

.main-product-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.main-product-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: linear-gradient(160deg, #1a0d00 0%, #2a1205 100%);
  border-radius: 14px;
  display: block;
  padding: 0.75rem;
}
.main-product-crown {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
}

.main-product-badge {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}
.main-product-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #fff;
  margin: 0.4rem 0 1rem;
  line-height: 1.15;
}
.main-product-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.main-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mp-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 500;
}

/* ─── UPCOMING PRODUCTS ─────────────────────────────── */
.upcoming-products-wrap { margin-top: 0; }

.upcoming-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.75rem;
}
.upcoming-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.4), transparent);
}
.upcoming-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.upcoming-subtext {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.upcoming-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 900px) {
  .upcoming-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 500px) {
  .upcoming-grid { grid-template-columns: 1fr 1fr !important; }
}

.product-upcoming {
  position: relative;
  opacity: 0.75;
  filter: grayscale(25%);
  cursor: default !important;
  pointer-events: none;
}
.product-upcoming .product-box-img img {
  filter: brightness(0.75);
}
.upcoming-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(20,20,20,0.85);
  border: 1px solid rgba(212,175,55,0.5);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  z-index: 2;
}
.upcoming-arrow {
  opacity: 0.4;
  cursor: default;
}

/* ─── LEADERSHIP TEAM SECTION ────────────────────── */
.team-section { background: var(--bg); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.team-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

.team-img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(160deg, #1a0d00, #2a1205);
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.04);
}

.team-role-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
}

.team-info {
  padding: 1.5rem 1.6rem 1.75rem;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 0.3rem;
  line-height: 1.2;
}

.team-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.85;
}

.team-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1rem 0;
  border-radius: 2px;
}

.team-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  margin-bottom: 1.25rem;
}
.team-desc strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.team-expertise span {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  color: rgba(212,175,55,0.85);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}
