/* ============================================================
   HIGHSTAR ORGANICS — Main Stylesheet
   Theme: Luxury Premium Spice Export Brand
   Colors: Deep Forest Green · Antique Gold · Cream White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --green-deep:    #0B2A17;
  --green-mid:     #144D2A;
  --green-light:   #1E6B3A;
  --gold-dark:     #8B6914;
  --gold-mid:      #C9A227;
  --gold-light:    #E8C84A;
  --gold-pale:     #F5E6A3;
  --cream:         #FBF7EE;
  --cream-dark:    #F0E9D6;
  --white:         #FFFFFF;
  --text-dark:     #1A1A1A;
  --text-mid:      #3D3D3D;
  --text-muted:    #6B6B6B;
  --border:        rgba(201, 162, 39, 0.25);
  --shadow-sm:     0 2px 12px rgba(11, 42, 23, 0.08);
  --shadow-md:     0 8px 32px rgba(11, 42, 23, 0.14);
  --shadow-lg:     0 20px 60px rgba(11, 42, 23, 0.18);
  --radius:        8px;
  --radius-lg:     16px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-deep);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
p  { color: var(--text-mid); }

.gold-text { color: var(--gold-mid); }
.section-label {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.75rem;
}

/* ── Ornament divider ───────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}
.ornament-diamond {
  width: 10px; height: 10px;
  background: var(--gold-mid);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Container ──────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 800px; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.5);
  color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold-mid);
  color: var(--gold-mid);
}
.btn-outline-gold:hover {
  background: var(--gold-mid);
  color: var(--white);
}
.btn-green {
  background: linear-gradient(135deg, var(--green-light), var(--green-deep));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(11, 42, 23, 0.3);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(11, 42, 23, 0.4);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--green-deep);
}
.btn-white:hover { background: var(--cream); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
  box-shadow: 0 14px 30px rgba(37,211,102,0.28);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
}
.btn-whatsapp svg,
.btn-whatsapp-outline svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex-shrink: 0;
}
.btn-whatsapp-outline {
  border-color: rgba(37,211,102,0.55);
  color: #1fa855;
}
.btn-whatsapp-outline:hover {
  background: rgba(37,211,102,0.08);
  border-color: #25D366;
  color: #169c4d;
}

/* ── Header / Navbar ────────────────────────────────────────── */
#site-header {
  position: relative;
  z-index: 100;
  background: linear-gradient(180deg, #0a2b18 0%, #0d331c 100%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.16);
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 84px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
}

.nav-logo img {
  width: auto;
  height: 52px;
  max-width: 220px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-mid);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-cta .btn {
  padding: 0.78rem 1.45rem;
  font-size: 0.76rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.nav-mobile {
  display: none;
  background: #0b2a17;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 1.5rem 1rem;
}

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

.nav-mobile a {
  display: block;
  padding: 0.8rem 0;
  color: rgba(255,255,255,0.9);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile-cta {
  color: var(--gold-light) !important;
}
/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: 5.25rem 0 4.5rem;
  background: linear-gradient(135deg, var(--green-deep) 0%, #1a4d2a 50%, #0d3320 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(201,162,39,0.15)'/%3E%3C/svg%3E") repeat;
  background-size: 60px 60px;
  opacity: 0.4;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(30,107,58,0.2) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 1.25rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--gold-mid); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 580px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-search {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  max-width: 640px;
  margin: -1rem 0 2.2rem;
}
.hero-search input {
  flex: 1 1 340px;
  min-width: 240px;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.98rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero-search input::placeholder { color: rgba(255,255,255,0.6); }
.hero-search input:focus {
  outline: none;
  border-color: rgba(201,162,39,0.7);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.14);
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-mid);
  display: block;
}
.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  opacity: 0.12;
  pointer-events: none;
}
.hero-visual-image {
  right: 4%;
  width: min(42%, 540px);
  opacity: 1;
  z-index: 1;
}
.hero-visual-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 30px 55px rgba(4, 15, 10, 0.35));
}

/* ── Section Headers ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ── Brand Cards ────────────────────────────────────────────── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.brand-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--gold-mid));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.brand-card:hover { box-shadow: var(--shadow-md); }
.brand-card:hover::before { transform: scaleX(1); }
.brand-logo {
  height: 120px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}
.brand-showcase {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
}
.brand-showcase-media {
  min-height: 260px;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.brand-showcase-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.brand-showcase-info {
  min-width: 0;
}
.brand-card h3 { margin-bottom: 0.5rem; }
.brand-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── Product Cards ──────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  justify-content: center;  
  gap: 1.75rem;
}

.related-products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.95rem;
}

.related-products-grid .product-card {
  width: 300px;
  flex: 0 0 300px;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.product-card-link-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.product-img-wrap {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-img-wrap img,
.product-img-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img,
.product-card:hover .product-img-wrap video { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold-mid);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.4rem;
}
.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.product-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
  min-height: 42px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.variants-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-light);
}
.product-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.product-link:hover { color: var(--gold-mid); }
.product-link svg { transition: transform 0.3s; }
.product-link:hover svg { transform: translateX(4px); }

/* ── Why Choose Us ──────────────────────────────────────────── */
.features-section { background: var(--green-deep); color: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-item { text-align: center; padding: 1.5rem 1rem; }
.feature-icon {
  width: 70px; height: 70px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
}
.feature-item h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.5rem;
}
.feature-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.7); margin: 1rem auto 2rem; max-width: 500px; }

/* ── Inquiry Form ───────────────────────────────────────────── */
.form-section { background: var(--white); }
.inquiry-form { max-width: 700px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── Product Detail ─────────────────────────────────────────── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-main-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(180deg, #efe5cd, #e7d9b9);
  box-shadow: 0 20px 46px rgba(14,31,21,0.08);
}
.product-main-img img,
.product-main-img video,
.product-main-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(9,39,24,0.34);
  color: #fff;
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  z-index: 3;
  pointer-events: auto;
}
.product-gallery-prev { left: 12px; }
.product-gallery-next { right: 12px; }
.product-gallery-nav:hover {
  background: rgba(9,39,24,0.56);
  border-color: rgba(201,162,39,0.36);
  transform: translateY(-50%) scale(1.04);
}
.product-thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 112px));
  gap: 0.7rem;
  justify-content: start;
  margin-top: 0.95rem;
}
.product-thumb {
  position: relative;
  padding: 0;
  border: 2px solid rgba(215,203,177,0.95);
  border-radius: 12px;
  overflow: hidden;
  background: #f7f0de;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.product-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 40%, rgba(0,0,0,0.08));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.product-thumb img,
.product-thumb video {
  width: 100%;
  height: 82px;
  object-fit: cover;
  display: block;
}
.product-thumb-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(9,39,24,0.82);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}
.product-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(201,162,39,0.5);
  box-shadow: 0 12px 22px rgba(15,32,22,0.12);
}
.product-thumb:hover::after { opacity: 1; }
.product-thumb.active {
  border-color: var(--gold-mid);
  box-shadow: 0 14px 24px rgba(201,162,39,0.18);
}
.product-thumb.active::after {
  opacity: 0.85;
  background: linear-gradient(180deg, rgba(201,162,39,0.02), rgba(201,162,39,0.16));
}
.product-thumb:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(201,162,39,0.16);
}
.variants-list { margin: 1.5rem 0; }
.variants-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}
.variant-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.22rem;
  min-width: 132px;
  padding: 0.82rem 1rem 0.78rem;
  border: 1px solid rgba(201,162,39,0.24);
  border-radius: 14px;
  margin: 0.35rem 0.45rem 0.35rem 0;
  font-size: 0.8rem;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,242,229,0.96));
  box-shadow: 0 10px 22px rgba(21,39,28,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.variant-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(201,162,39,0.48);
  box-shadow: 0 16px 28px rgba(21,39,28,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(250,246,237,1));
}
.variant-chip .vg {
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.2;
  color: var(--green-deep);
}
.variant-chip .vs {
  color: #8e6b00;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
}

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  padding: 4.5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--gold-mid); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── About Page ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrapper { position: relative; }
.about-img-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold-mid);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
}
.about-badge .year { font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-badge .label { font-size: 0.8rem; }

/* ── Our Story Pillar Cards ─────────────────────────────────── */
.pillar-card.revealed {
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
}
.pillar-card.revealed:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(201,162,39,0.5) !important;
}

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}
.contact-info { background: var(--green-deep); border-radius: var(--radius-lg); padding: 2.5rem; color: var(--white); }
.contact-info h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,162,39,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h5 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.25rem;
}
.contact-item p { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: white;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 2rem;
  transition: var(--transition);
}
.whatsapp-btn:hover { background: #1fb855; transform: translateY(-2px); color: white; }

/* ── Footer ─────────────────────────────────────────────────── */
#site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.75);
}
.footer-top {
  padding: 5rem 0 3rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {
  margin-top: -0.45rem;
}
.footer-brand .logo-wrap { margin-bottom: 1.25rem; }
.footer-brand .logo-wrap img { height: 46px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 360px; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.footer-col h5 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold-mid); padding-left: 4px; }
.footer-map-card {
  display: block;
  max-width: 258px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.footer-map-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201,162,39,0.36);
  box-shadow: 0 16px 30px rgba(0,0,0,0.18);
}
.footer-map-frame {
  position: relative;
  height: 92px;
  background: #f3f0ea;
  overflow: hidden;
}
.footer-map-embed {
  width: 100%;
  height: calc(100% + 46px);
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(1.02);
  transform: translateY(-36px) scale(1.05);
  transform-origin: top center;
  pointer-events: none;
}
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom span { color: rgba(255,255,255,0.9); }
.footer-bottom a { color: var(--gold-mid); }

/* ── Floating WhatsApp ──────────────────────────────────────── */
.float-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
}
.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.float-whatsapp svg { width: 28px; height: 28px; fill: white; }

/* ── Alert / Flash ──────────────────────────────────────────── */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-up { animation: fadeInUp 0.7s ease forwards; }
[data-reveal] { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── Utilities ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold-mid) !important; }
.text-green { color: var(--green-light) !important; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .navbar {
    gap: 1rem;
  }
  .nav-logo img {
    height: 38px;
    max-width: 165px;
  }
  .nav-links {
    gap: 1.2rem;
  }
  .nav-links a {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }
  .nav-cta .btn {
    padding: 0.7rem 1rem;
    font-size: 0.69rem;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: block;
    justify-self: end;
  }
  .navbar {
    grid-template-columns: auto auto;
    min-height: 68px;
  }
  .nav-logo img {
    height: 36px;
    max-width: 150px;
  }
  .hero {
    min-height: auto;
    padding: 4rem 0 3.5rem;
  }
  .hero-content {
    padding-top: 0.5rem;
  }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 1.1rem; }
  .about-grid,
  .contact-grid,
  .product-detail-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .brand-showcase { grid-template-columns: 1fr; }
  .brand-showcase-media {
    min-height: 220px;
    border-radius: 16px 16px 0 0;
  }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p,
  .footer-map-card { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-badge { display: none; }
  .cta-banner { padding: 3rem 1.5rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 4rem 0; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
}
















/* FINAL NAVBAR FIX */
#site-header {
  position: relative;
  z-index: 100;
  background: linear-gradient(180deg, #082112 0%, #0a2615 100%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow: 0 14px 34px rgba(3, 12, 7, 0.28);
}

#site-header .navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.15rem;
  min-height: 74px;
}

#site-header .nav-logo {
  display: inline-flex;
  align-items: center;
}

#site-header .nav-logo img {
  height: 46px;
  width: auto;
  max-width: 196px;
  object-fit: contain;
}

#site-header .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

#site-header .nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0;
  color: rgba(255,255,255,0.9);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

#site-header .nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-mid));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

#site-header .nav-links a:hover,
#site-header .nav-links a.active {
  color: var(--gold-light);
}

#site-header .nav-links a:hover::after,
#site-header .nav-links a.active::after {
  transform: scaleX(1);
}

#site-header .nav-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

#site-header .nav-cta .btn {
  padding: 0.72rem 1.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

#site-header .nav-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

#site-header .nav-search input {
  width: 170px;
  padding: 0.62rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.26);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.72rem;
}

#site-header .nav-search input::placeholder {
  color: rgba(255,255,255,0.58);
}

#site-header .nav-search input:focus {
  outline: none;
  border-color: rgba(201,162,39,0.7);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.14);
}

#site-header .nav-search-btn {
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.34);
  background: transparent;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

#site-header .nav-search-btn:hover {
  background: rgba(201,162,39,0.12);
}

.nav-mobile-search {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.nav-mobile-search input {
  flex: 1;
  padding: 0.72rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(201,162,39,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.nav-mobile-search input::placeholder {
  color: rgba(255,255,255,0.56);
}

.nav-mobile-search button {
  padding: 0.72rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(201,162,39,0.34);
  background: rgba(201,162,39,0.12);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 74px);
  margin-top: 0;
  padding: 8.4rem 0 4.35rem;
  background: linear-gradient(135deg, #0b321c 0%, #15532b 52%, #0f3b22 100%);
}

.hero::before {
  opacity: 0.22;
}

.hero-content {
  padding-top: 0;
}

.hero-badge {
  background: rgba(201,162,39,0.12);
  border-color: rgba(201,162,39,0.34);
}

.hero h1 {
  font-size: clamp(2.7rem, 5.7vw, 4.7rem);
}

.hero-desc {
  max-width: 620px;
  color: rgba(255,255,255,0.8);
}

.hero-home {
  background:
    linear-gradient(92deg, rgba(4,18,11,0.94) 0%, rgba(7,31,18,0.88) 34%, rgba(10,42,24,0.58) 60%, rgba(12,49,29,0.22) 100%),
    url('../images/hero/Untitled design.png') center center / cover no-repeat fixed;
}

.hero-home-has-media {
  background: #0b321c;
  overflow: hidden;
}

.hero-media-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-media-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-media-slide img,
.hero-media-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media-video {
  background: #091e12;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(4,18,11,0.94) 0%, rgba(7,31,18,0.88) 34%, rgba(10,42,24,0.58) 60%, rgba(12,49,29,0.22) 100%),
    linear-gradient(180deg, rgba(7, 27, 16, 0.1) 0%, rgba(7, 27, 16, 0.22) 100%);
}

.hero-home::before {
  opacity: 0;
}

.hero-home .hero-pattern {
  background:
    radial-gradient(circle at 16% 20%, rgba(201,162,39,0.15) 0%, transparent 24%),
    radial-gradient(circle at 78% 70%, rgba(28,122,66,0.18) 0%, transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.12));
}

.hero-home .hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 1.1rem 0 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-home .hero-content::before {
  content: "";
  position: absolute;
  left: -1.4rem;
  top: 0.75rem;
  bottom: 0.4rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(232,194,78,0.96), rgba(232,194,78,0.18));
  box-shadow: 0 0 18px rgba(232,194,78,0.22);
}

.hero-home .hero-badge {
  margin-bottom: 1.35rem;
  background: rgba(201,162,39,0.14);
  border-color: rgba(201,162,39,0.44);
  color: #f4d880;
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.hero-home h1 {
  max-width: 620px;
  font-size: clamp(3.25rem, 6.1vw, 5.55rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
  color: #fffef8;
  text-shadow: 0 8px 28px rgba(0,0,0,0.34);
}

.hero-home h1 span {
  display: inline-block;
  color: #e1b941;
}

.hero-home .hero-desc {
  max-width: 610px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255,247,229,0.9);
  margin-bottom: 2.15rem;
  text-shadow: 0 3px 14px rgba(0,0,0,0.18);
}

.hero-home .hero-actions {
  gap: 0.95rem;
  margin-bottom: 2.45rem;
}

.hero-home .hero-actions .btn {
  min-width: 190px;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(0,0,0,0.16);
}

.hero-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 690px;
  padding-top: 0;
  border-top: 0;
}

.hero-home .hero-stats > div {
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-home .hero-stat-num {
  font-size: 2rem;
  color: #fff9e8;
}

.hero-home .hero-stat-label {
  color: rgba(255,244,220,0.72);
  letter-spacing: 0.1em;
}

.trust-strip {
  position: relative;
  overflow: hidden;
  background: #092213;
  border-top: 1px solid rgba(201,162,39,0.16);
  border-bottom: 1px solid rgba(201,162,39,0.12);
}

.trust-strip::before,
.trust-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 84px;
  z-index: 2;
  pointer-events: none;
}

.trust-strip::before {
  left: 0;
  background: linear-gradient(90deg, #092213 0%, rgba(9,34,19,0) 100%);
}

.trust-strip::after {
  right: 0;
  background: linear-gradient(270deg, #092213 0%, rgba(9,34,19,0) 100%);
}

.trust-strip-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  padding: 0.95rem 0;
  animation: trust-scroll 28s linear infinite;
}

.trust-strip-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.18);
  color: rgba(255,250,239,0.88);
  font-family: 'Raleway', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-strip-track .svg-icon {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--gold-mid);
}

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  #site-header .navbar { gap: 0.9rem; }
  #site-header .nav-logo img { height: 42px; max-width: 176px; }
  #site-header .nav-links { gap: 0.95rem; }
  #site-header .nav-links a { font-size: 0.71rem; letter-spacing: 0.05em; }
  #site-header .nav-cta .btn { padding: 0.62rem 0.88rem; font-size: 0.66rem; }
  #site-header .nav-search input { width: 138px; }
  #site-header .nav-search-btn { padding: 0.58rem 0.75rem; font-size: 0.63rem; }
  .hero { padding-top: 7.35rem; }
  .hero-home .hero-content { max-width: 650px; }
  .hero-home .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip-track { animation-duration: 24s; }
}

@media (max-width: 860px) {
  #site-header .nav-links,
  #site-header .nav-cta { display: none; }
  #site-header .hamburger { display: block; justify-self: end; }
  #site-header .navbar { grid-template-columns: auto auto; min-height: 64px; }
  #site-header .nav-logo img { height: 36px; max-width: 154px; }
  .hero { min-height: auto; padding: 5.5rem 0 3.1rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-content { padding-top: 0; }
  .hero-home {
    background-attachment: scroll;
    background-position: 70% center;
  }
  .hero-home .hero-content {
    max-width: 100%;
    padding: 0.5rem 0 0;
  }
  .hero-home .hero-content::before { left: -0.8rem; }
  .hero-home .hero-actions .btn { min-width: 0; }
  .hero-home .hero-stats { gap: 0.8rem; }
  .hero-home .hero-stats > div { padding: 0.9rem 0.85rem 0.85rem; border-radius: 14px; }
  .trust-strip::before,
  .trust-strip::after { width: 38px; }
  .trust-strip-track {
    gap: 0.75rem;
    padding: 0.78rem 0;
    animation-duration: 20s;
  }
  .trust-strip-track span {
    font-size: 0.68rem;
    padding: 0.48rem 0.75rem;
  }
  .product-thumb-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
  }
  .product-thumb img,
  .product-thumb video { height: 68px; }
}

@media (max-width: 480px) {
  .hero-home h1 { font-size: 2.7rem; }
  .hero-home .hero-desc { font-size: 0.97rem; line-height: 1.72; }
  .hero-home .hero-content::before { display: none; }
  .hero-home .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-home .hero-stat-num { font-size: 1.7rem; }
  .hero-home .hero-stats > div { padding: 0.82rem 0.75rem 0.78rem; }
  .trust-strip-track span {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }
}

/* Premium SVG Icons */
.svg-icon { width: 1em; height: 1em; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.hero-badge .svg-icon { width: 1rem; height: 1rem; color: var(--gold-light); }
.btn .svg-icon, .btn-admin .svg-icon { width: 1rem; height: 1rem; }
.feature-icon .svg-icon { width: 30px; height: 30px; color: var(--gold-light); }
.feature-icon-sm { width: 60px; height: 60px; }
.contact-icon .svg-icon { width: 20px; height: 20px; color: var(--gold-light); }
.core-value-icon { width: 48px; height: 48px; font-size: 1rem; }
.core-value-icon .svg-icon { width: 20px; height: 20px; color: var(--gold-mid); }
.product-pill-icon { width: 36px; height: 36px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: rgba(201,162,39,0.1); color: var(--gold-dark); border: 1px solid rgba(201,162,39,0.18); }
.product-pill-icon .svg-icon { width: 18px; height: 18px; }
.inline-arrow { width: 0.95rem; height: 0.95rem; }

/* Final mobile polish */
html,
body {
  overflow-x: hidden;
}

.products-toolbar {
  row-gap: 0.75rem;
}

.products-search-form input {
  font: inherit;
}

@media (max-width: 860px) {
  #site-header {
    position: sticky;
    top: 0;
  }

  .nav-mobile {
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    box-shadow: 0 18px 30px rgba(0,0,0,0.28);
  }

  .page-hero {
    padding: 4.25rem 0 3.5rem;
  }

  .page-hero h1 {
    font-size: 2.35rem;
    line-height: 1.05;
  }

  .products-toolbar {
    align-items: stretch !important;
    margin-bottom: 2rem !important;
  }

  .products-toolbar > span {
    width: 100%;
    margin-right: 0 !important;
  }

  .products-toolbar .btn {
    flex: 1 1 auto;
    justify-content: center;
    min-height: 40px;
  }

  .products-search-form {
    width: 100%;
    margin-left: 0 !important;
  }

  .products-search-form input {
    flex: 1;
    min-width: 0 !important;
    width: 100%;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-img-wrap {
    height: 210px;
  }

  .product-info {
    padding: 1.3rem 1.2rem;
  }

  .contact-info {
    padding: 2rem 1.35rem;
    border-radius: 16px;
  }

  .contact-item {
    gap: 0.8rem;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }

  .footer-top {
    padding: 3rem 0 2.35rem;
  }

  .footer-brand {
    transform: none;
  }

  .footer-map-card {
    max-width: 280px;
  }

  .float-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #site-header .nav-logo img {
    height: 34px;
    max-width: 142px;
  }

  .nav-mobile {
    padding: 1rem;
  }

  .nav-mobile-search {
    flex-direction: column;
  }

  .nav-mobile-search button {
    width: 100%;
  }

  .hero {
    padding: 4.45rem 0 2.75rem;
  }

  .hero-home {
    background-position: 68% center;
  }

  .hero-home h1 {
    font-size: 2.35rem;
    line-height: 1.02;
    letter-spacing: 0;
  }

  .hero-home .hero-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  .hero-home .hero-actions {
    gap: 0.7rem;
    margin-bottom: 1.55rem;
  }

  .hero-home .hero-actions .btn {
    width: 100%;
    min-height: 44px;
  }

  .hero-home .hero-stats {
    gap: 0.65rem;
  }

  .hero-home .hero-stats > div {
    border-radius: 12px;
    padding: 0.72rem 0.65rem;
  }

  .hero-home .hero-stat-num {
    font-size: 1.45rem;
  }

  .hero-home .hero-stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .section {
    padding: 3.35rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .product-img-wrap {
    height: 190px;
  }

  .product-footer {
    gap: 0.85rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-showcase-content {
    padding: 2rem 1.35rem;
  }

  .contact-info h3,
  .contact-grid h2 {
    font-size: 2rem;
  }

  .form-control {
    min-height: 46px;
  }

  .footer-top {
    gap: 1.55rem;
  }

  .footer-brand .logo-wrap img {
    height: 40px;
  }

  .footer-brand p {
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .footer-map-card {
    max-width: 240px;
  }

  .footer-bottom .container {
    justify-content: center !important;
    text-align: center;
  }
}
