/* ══════════════════════════════════════════════════════════════
   Naina Jewellers — Main Stylesheet  (Production v2)
   ══════════════════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────────────────── */
:root {
  --gold:          #C9A96E;
  --gold-dark:     #9A7540;
  --gold-deep:     #7A5A25;
  --gold-light:    #E8D5B0;
  --gold-shine:    #F5E6C8;
  --rose-gold:     #C4956A;
  --champagne:     #FAF6EE;
  --cream:         #F5EDD8;
  --white:         #FFFFFF;
  --dark:          #1A1A1A;
  --dark-2:        #2C2C2C;
  --text:          #3A3A3A;
  --text-muted:    #7A7A7A;
  --border:        #E8D5B0;
  --shadow-gold:   0 8px 40px rgba(201,169,110,0.18);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover:  0 16px 48px rgba(201,169,110,0.28);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --transition:    all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-accent:   'Cormorant Garamond', Georgia, serif;
  --font-body:     'Poppins', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;    /* ✅ PREVENT HORIZONTAL SCROLL */
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;    /* ✅ PREVENT HORIZONTAL SCROLL */
  width: 100%;
  max-width: 100vw;
  padding-top: 108px;
}

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

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.05rem; }

/* ── Container ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ── Gold Shimmer Text ───────────────────────────────────────── */
.gold-text {
  background: linear-gradient(135deg,
    var(--gold-deep) 0%,
    var(--gold) 35%,
    var(--gold-shine) 55%,
    var(--gold) 75%,
    var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: goldShimmer 4s linear infinite;
  display: inline;
}
@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ── Section Titles ──────────────────────────────────────────── */
.section-title { text-align: center; margin-bottom: 12px; }
.section-title h2 { margin-bottom: 6px; }
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-family: var(--font-accent);
  font-size: 1.05rem;
  margin-bottom: 44px;
}
.title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.title-ornament span {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.title-ornament span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.title-ornament i { color: var(--gold); font-size: 0.9rem; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  background-size: 200% auto;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(154,117,64,0.35);
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(154,117,64,0.45);
  color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold-dark);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  color: white;
}

/* ══════════════════════════════════════════════════
   RATE WIDGET (Fixed — bottom-right)
══════════════════════════════════════════════════ */
.rate-widget {
  position: fixed;
  bottom: 90px;
  right: 16px;
  z-index: 900;
  background: rgba(20,20,20,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: slideInRight 0.7s cubic-bezier(0.4,0,0.2,1) both;
  min-width: 180px;
  max-width: 220px;
}
@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
.rate-widget__inner { display: flex; flex-direction: column; gap: 7px; }
.rate-item { display: flex; align-items: center; gap: 7px; }
.rate-icon { font-size: 0.95rem; }
.rate-label {
  font-size: 0.7rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 38px;
}
.rate-value {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}
.rate-value.gold-rate   { color: var(--gold); }
.rate-value.silver-rate { color: #C0C0C0; }
.rate-value small { font-size: 0.62rem; opacity: 0.75; margin-left: 2px; font-family: var(--font-body); }
.rate-divider { height: 1px; background: rgba(201,169,110,0.2); }
.rate-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  color: #777;
  margin-top: 1px;
}
.pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #25D366;
  display: inline-block;
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}

/* ══════════════════════════════════════════════════
   HEADER & NAVBAR
══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  will-change: transform;
}
.header-top {
  background: var(--dark);
  padding: 7px 0;
  font-size: 0.78rem;
}
.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-contact {
  display: flex;
  gap: 18px;
}
.header-contact a {
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-contact a:hover { color: var(--gold); }
.header-contact a i    { color: var(--gold); }
.header-social { display: flex; gap: 10px; }
.header-social a {
  color: #999;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
  font-size: 0.78rem;
  transition: var(--transition);
}
.header-social a:hover { color: var(--gold); border-color: var(--gold); }

/* Navbar */
.navbar {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold-light);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.site-header.scrolled .navbar {
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar__logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.navbar__brand-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar__menu > li { position: relative; }
.navbar__menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.navbar__menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__menu > li > a:hover::after,
.navbar__menu > li > a.active::after { left: 14px; right: 14px; }
.navbar__menu > li > a:hover,
.navbar__menu > li > a.active { color: var(--gold-dark); }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 170px;
  box-shadow: var(--shadow-card);
  padding: 6px 0;
  z-index: 999;
  animation: dropIn 0.2s ease both;
}
@keyframes dropIn {
  from { transform: translateY(-6px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 9px 16px;
  font-size: 0.83rem;
  color: var(--text);
  transition: var(--transition);
}
.dropdown-menu li a:hover {
  background: var(--champagne);
  color: var(--gold-dark);
  padding-left: 22px;
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px 10px;
  transition: var(--transition);
}
.navbar__toggle:hover { border-color: var(--gold); }
.navbar__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__toggle.open { border-color: var(--gold); }
.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold-dark); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold-dark); }

/* ══════════════════════════════════════════════════
   HERO SECTION  — Redesigned
══════════════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 108px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;   /* ✅ CLIP DECORATIVE ELEMENTS */
  background: #faf6ee;
}

/* Layered background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(201,169,110,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(196,149,106,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #fff9f0 0%, #faf6ee 40%, #f5edd8 100%);
  z-index: 0;
}

/* Pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='1' fill='%23C9A96E' opacity='0.08'/%3E%3C/svg%3E");
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  width: 100%;
}

/* ── Hero Content ── */
.hero__content { }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(201,169,110,0.18), rgba(201,169,110,0.06));
  border: 1px solid rgba(201,169,110,0.45);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__badge i { color: var(--gold); animation: spinSlow 6s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.hero__title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 18px;
  color: var(--dark);
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 34px;
  line-height: 1.7;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__stats {
  display: flex;
  gap: 0;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(201,169,110,0.3);
}
.hero__stat {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid rgba(201,169,110,0.2);
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child  { border-right: none; }
.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Hero Visual (Right side) ── */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
}

/* Glow behind */
.hero__glow {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.2) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.15); opacity: 0.4; }
}

/* Outer ring (rotating) */
.hero__ring-outer {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1.5px dashed rgba(201,169,110,0.35);
  animation: rotateCW 30s linear infinite;
}
@keyframes rotateCW { to { transform: rotate(360deg); } }

/* Dot markers on outer ring */
.hero__ring-outer::before,
.hero__ring-outer::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}
.hero__ring-outer::before { top: -4px; left: calc(50% - 4px); }
.hero__ring-outer::after  { bottom: -4px; left: calc(50% - 4px); }

/* Middle ring (counter) */
.hero__ring-mid {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.2);
  animation: rotateCCW 20s linear infinite;
}
@keyframes rotateCCW { to { transform: rotate(-360deg); } }

/* Main circle */
.hero__circle {
  position: relative;
  z-index: 3;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff9f0 0%, #f5edd8 50%, #ecdbb8 100%);
  border: 3px solid rgba(201,169,110,0.4);
  box-shadow:
    0 0 0 8px rgba(201,169,110,0.08),
    0 20px 60px rgba(201,169,110,0.25),
    inset 0 2px 10px rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.hero__circle-icon {
  font-size: 4.5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(201,169,110,0.4));
  animation: floatGem 3s ease-in-out infinite;
}
@keyframes floatGem {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hero__circle-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--gold-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.8;
}

/* Orbiting gemstones */
.hero__orbit {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  animation: rotateCW 15s linear infinite;
}
.hero__orbit-dot {
  position: absolute;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #fff9f0, #f5edd8);
  border: 2px solid rgba(201,169,110,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(201,169,110,0.2);
  top: -18px;
  left: calc(50% - 18px);
}

/* Floating badges */
.hero__float-badge {
  position: absolute;
  z-index: 10;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  animation: floatBadge1 4s ease-in-out infinite;
}
.hero__float-badge:first-of-type {
  top: 28px;
  right: 10px;
  text-align: center;
}
.hero__float-badge:last-of-type {
  bottom: 50px;
  left: 0px;
  animation-delay: -2s;
}
@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.float-badge-icon { font-size: 1.4rem; margin-bottom: 2px; }
.float-badge-val {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.float-badge-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════
   TICKER MARQUEE
══════════════════════════════════════════════════ */
.ticker-section {
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
  padding: 13px 0;
  overflow: hidden;          /* ✅ CLIP TICKER */
  position: relative;
  z-index: 2;
}
.ticker-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 0;
}
.ticker-label {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: var(--dark);
  padding: 4px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 20px;
  border-radius: 0 4px 4px 0;
  white-space: nowrap;
}
.ticker-content {
  display: flex;
  gap: 56px;
  animation: tickerScroll 22s linear infinite;
  white-space: nowrap;
  color: var(--gold-light);
  font-size: 0.82rem;
}
.ticker-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ticker-content strong { color: var(--gold); }
.ticker-content i      { color: var(--gold); font-size: 0.55rem; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════
   COLLECTIONS / CATEGORIES SECTION
══════════════════════════════════════════════════ */
.categories-section { padding: 80px 0 60px; }
.category-block     { margin-bottom: 68px; }
.category-block:last-child { margin-bottom: 0; }

.category-block__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}
.category-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 5px;
  display: block;
}
.category-block__title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 4px; }
.category-block__desc  { color: var(--text-muted); font-family: var(--font-accent); font-size: 1rem; }

/* ── Products Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ── Product Card ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-light);
}
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--champagne);
  flex-shrink: 0;
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-card__img { transform: scale(1.07); }
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.78) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card__cta {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  transition: var(--transition);
}
.product-card__cta:hover { transform: scale(1.03); color: white; }
.product-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__category {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 5px;
}
.product-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}
.product-card__footer { border-top: 1px solid var(--border); padding-top: 11px; margin-top: auto; }
.product-card__enquire {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.product-card__enquire:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  color: white;
}

/* Image placeholder */
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--champagne), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,169,110,0.5);
  font-size: 3rem;
}

/* ══════════════════════════════════════════════════
   ABOUT SECTION (Homepage)
══════════════════════════════════════════════════ */
.about-section {
  background: var(--champagne);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.1), transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 28px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--gold);
  max-width: 190px;
}
.about-img-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-dark);
  line-height: 1;
}
.about-img-badge span { font-size: 0.78rem; color: var(--text-muted); }
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.about-feature { display: flex; gap: 14px; align-items: flex-start; }
.about-feature__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--champagne));
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.95rem;
}
.about-feature__body h4 { font-size: 0.95rem; margin-bottom: 3px; }
.about-feature__body p  { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ══════════════════════════════════════════════════
   FEATURES / WHY CHOOSE US
══════════════════════════════════════════════════ */
.features-section { padding: 80px 0; background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--champagne);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-light);
  background: var(--white);
}
.feature-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--cream));
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--gold-dark);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: var(--white);
  border-color: transparent;
  transform: scale(1.08);
}
.feature-title { font-size: 1rem; margin-bottom: 8px; }
.feature-desc  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   LOCATION SECTION
══════════════════════════════════════════════════ */
.location-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  overflow: hidden;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.location-content .section-title h2 { color: var(--white); }
.location-info { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.location-info-item { display: flex; gap: 14px; align-items: flex-start; }
.location-info-item i {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(201,169,110,0.13);
  border: 1px solid rgba(201,169,110,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.88rem;
}
.location-info-item strong { display: block; font-size: 0.78rem; color: #aaa; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font-body); font-weight: 500; }
.location-info-item span, .location-info-item a { color: var(--gold-light); font-size: 0.9rem; }
.location-info-item a:hover { color: var(--gold); }
.location-map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border: 1px solid rgba(201,169,110,0.2);
}
.location-map-inner {
  background: linear-gradient(135deg, #252525, #1a1a1a);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
}
.location-map-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20L20 0M20 20L0 20' stroke='%23C9A96E' stroke-opacity='0.05' stroke-width='0.5'/%3E%3C/svg%3E") repeat;
}
.map-pin-icon {
  font-size: 2.8rem;
  color: var(--gold);
  animation: pinBounce 1.8s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.map-address { color: var(--gold-light); text-align: center; font-size: 0.85rem; position: relative; z-index: 1; padding: 0 20px; line-height: 1.5; }

/* ══════════════════════════════════════════════════
   SOCIAL MEDIA SECTION
══════════════════════════════════════════════════ */
.social-section { padding: 60px 0; background: var(--champagne); text-align: center; }
.social-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  min-width: 180px;
  text-decoration: none;
  border: 2px solid transparent;
}
.social-card i { font-size: 1.7rem; }
.social-card--instagram {
  background: linear-gradient(135deg,#405DE6,#5851DB,#833AB4,#C13584,#E1306C,#FD1D1D,#F56040,#F77737,#FCAF45);
  color: white;
}
.social-card--facebook { background: #1877F2; color: white; }
.social-card--whatsapp { background: linear-gradient(135deg,#128C7E,#25D366); color: white; }
.social-card:hover { transform: translateY(-5px) scale(1.03); box-shadow: 0 12px 32px rgba(0,0,0,0.18); color: white; }
.social-card__text strong { display: block; font-size: 1rem; }
.social-card__text span   { font-size: 0.78rem; opacity: 0.85; }

/* ══════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 950;
  width: 54px; height: 54px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.55rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: waFloat 3.5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.whatsapp-float:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 8px 28px rgba(37,211,102,0.6) !important;
  color: white;
  animation: none;
}
.whatsapp-float__tooltip {
  position: absolute;
  right: 62px;
  background: var(--dark);
  color: white;
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
  font-family: var(--font-body);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer { background: var(--dark); color: var(--gold-light); }
.footer-top { padding: 68px 0 48px; }
.footer-top__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-logo   { height: 56px; margin-bottom: 10px; }
.footer-tagline { font-family: var(--font-accent); font-size: 1.05rem; color: var(--gold); font-style: italic; margin-bottom: 10px; }
.footer-desc    { font-size: 0.83rem; color: #888; line-height: 1.7; margin-bottom: 18px; }
.footer-social  { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 0.82rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer-col__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
}
.footer-col__title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-col ul li           { margin-bottom: 9px; }
.footer-col ul li a         { color: #888; font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover   { color: var(--gold-light); padding-left: 5px; }
.footer-contact-list li     { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-list li i   { color: var(--gold); margin-top: 3px; flex-shrink: 0; width: 14px; }
.footer-contact-list li a   { color: #888; }
.footer-contact-list li a:hover { color: var(--gold-light); }
.footer-contact-list li span { color: #888; }
.footer-rate-banner {
  background: rgba(201,169,110,0.08);
  border-top: 1px solid rgba(201,169,110,0.18);
  border-bottom: 1px solid rgba(201,169,110,0.18);
  padding: 12px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gold-light);
}
.footer-rate-banner strong { color: var(--gold); }
.rate-sep { margin: 0 14px; opacity: 0.35; }
.footer-bottom { padding: 18px 0; background: rgba(0,0,0,0.25); }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: #666; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20L20 0M20 20L0 20' stroke='%23C9A96E' stroke-opacity='0.06' stroke-width='0.5'/%3E%3C/svg%3E") repeat;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 8px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: #aaa; font-family: var(--font-accent); font-size: 1.05rem; max-width: 480px; margin: 0 auto 14px; }
.breadcrumb { display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; color: #777; margin-bottom: 14px; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.58rem; color: #555; }

/* ── Category Page ── */
.category-page { padding: 56px 0; }
.products-grid-full { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.no-products { text-align: center; padding: 60px 20px; color: var(--text-muted); grid-column: 1 / -1; }
.no-products i { display: block; font-size: 2.8rem; color: var(--gold-light); margin-bottom: 14px; }

/* ── About Page ── */
.about-page   { padding: 68px 0; }
.about-story  { margin-bottom: 64px; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-values { padding: 68px 0; background: var(--champagne); }
.values-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); padding: 30px 22px; border-radius: var(--radius-lg); text-align: center; border: 1px solid var(--border); transition: var(--transition); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.value-icon { font-size: 2.2rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 9px; }
.value-card p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ── Contact Page ── */
.contact-page { padding: 68px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; }
.contact-info-list { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--champagne)); border: 1.5px solid var(--gold-light); display: flex; align-items: center; justify-content: center; color: var(--gold-dark); flex-shrink: 0; font-size: 0.9rem; }
.contact-info-item h4  { font-size: 0.88rem; margin-bottom: 3px; font-family: var(--font-body); font-weight: 600; }
.contact-info-item a, .contact-info-item p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }
.contact-info-item a:hover { color: var(--gold-dark); }
.contact-form-wrap { background: var(--champagne); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); }
.form-group         { margin-bottom: 18px; }
.form-group label   { display: block; font-size: 0.82rem; font-weight: 500; color: var(--dark); margin-bottom: 5px; }
.form-control {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.14); }
.form-control::placeholder { color: #bbb; }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── Privacy Page ── */
.privacy-page { padding: 68px 0; }
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-content h2 { font-size: 1.3rem; color: var(--gold-dark); margin: 30px 0 10px; padding-top: 16px; border-top: 1px solid var(--border); }
.privacy-content h2:first-child { border-top: none; padding-top: 0; }
.privacy-content p, .privacy-content li { color: var(--text-muted); margin-bottom: 12px; line-height: 1.7; font-size: 0.9rem; }
.privacy-content ul { padding-left: 18px; margin-bottom: 12px; }

/* ── Utilities ── */
.text-gold   { color: var(--gold-dark); }
.text-center { text-align: center; }
.section-pad { padding: 80px 0; }

/* Scroll to top */
#scrollTop {
  position: fixed; bottom: 84px; left: 20px; z-index: 800;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: var(--shadow-gold);
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
#scrollTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scrollTop:hover   { background: var(--gold-dark); transform: translateY(-2px); }

/* Alerts */
.alert {
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 0.875rem;
  transition: opacity 0.5s;
  border: 1px solid transparent;
}
.alert-success { background: #d4edda; color: #155724; border-color: #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border-color: #f5c6cb; }

/* Scrollbar */
::-webkit-scrollbar       { width: 7px; }
::-webkit-scrollbar-track { background: var(--champagne); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
::selection { background: rgba(201,169,110,0.22); color: var(--dark); }

/* Page enter animation */
main { animation: pageEnter 0.4s ease both; }
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE  —  complete mobile fixes
══════════════════════════════════════════════════ */

/* ── 1100px ─────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid,
  .products-grid-full { grid-template-columns: repeat(3, 1fr); }
  .footer-top__grid   { grid-template-columns: 1fr 1fr; }
  .features-grid      { grid-template-columns: repeat(2, 1fr); }
  .hero__visual       { height: 400px; }
  .hero__ring-outer   { width: 320px; height: 320px; }
  .hero__ring-mid     { width: 264px; height: 264px; }
  .hero__circle       { width: 210px; height: 210px; }
}

/* ── 900px ──────────────────────────────── */
@media (max-width: 900px) {
  body { padding-top: 96px; }

  /* Navbar → mobile */
  .navbar__toggle { display: flex; }
  .navbar__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 10px 0 16px;
    border-top: 2px solid var(--gold-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 0;
    width: 100%;       /* ✅ no overflow */
  }
  .navbar__menu.open { display: flex; }
  .navbar__menu > li { width: 100%; }
  .navbar__menu > li > a { padding: 12px 20px; width: 100%; border-radius: 0; }
  .navbar__menu > li > a::after { display: none; }
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    background: var(--champagne);
    padding: 4px 0 4px 16px;
    animation: none;
  }
  .has-dropdown.open .dropdown-menu { display: block; }

  /* Hero → stack */
  .hero { min-height: auto; }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
    padding: 40px 0 48px;
  }
  .hero__visual { order: -1; height: 300px; }
  .hero__ring-outer { width: 260px; height: 260px; }
  .hero__ring-mid   { width: 214px; height: 214px; }
  .hero__circle     { width: 170px; height: 170px; }
  .hero__circle-icon { font-size: 3.2rem; }
  .hero__float-badge:first-of-type { top: 10px; right: 5%; }
  .hero__float-badge:last-of-type  { bottom: 10px; left: 5%; }
  .hero__orbit { width: 260px; height: 260px; }
  .hero__subtitle  { max-width: 100%; }
  .hero__actions   { justify-content: center; }
  .hero__stats     { justify-content: center; max-width: 360px; margin: 44px auto 0; }
  .title-ornament  { justify-content: center; }
  .about-grid,
  .about-story-grid,
  .location-grid,
  .contact-grid    { grid-template-columns: 1fr; gap: 36px; }
  .about-img-badge { left: 10px; }
  .header-contact  { display: none; }
  .products-grid,
  .products-grid-full { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .form-row        { grid-template-columns: 1fr; gap: 0; }
}

/* ── 680px ──────────────────────────────── */
@media (max-width: 680px) {
  body { padding-top: 90px; }

  .hero__inner { padding: 32px 0 40px; gap: 28px; }
  .hero__visual { height: 260px; }
  .hero__ring-outer { width: 230px; height: 230px; }
  .hero__ring-mid   { width: 188px; height: 188px; }
  .hero__circle     { width: 150px; height: 150px; }
  .hero__circle-icon { font-size: 2.6rem; }

  .features-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .social-cards   { flex-direction: column; align-items: center; }
  .social-card    { min-width: 260px; max-width: 320px; width: 100%; }

  .footer-top__grid     { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
  .footer-rate-banner .rate-sep { display: none; }
  .footer-rate-banner { display: flex; flex-direction: column; align-items: center; gap: 4px; }

  .contact-form-wrap { padding: 24px 16px; }
  .category-block__header { flex-direction: column; align-items: flex-start; }

  .rate-widget  { right: 8px; bottom: 80px; min-width: 160px; padding: 10px 12px; }
  .rate-value   { font-size: 0.88rem; }
}

/* ── 480px ──────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  .products-grid,
  .products-grid-full { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .hero__title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero__actions .btn { padding: 10px 18px; font-size: 0.8rem; }
  .hero__stats { gap: 0; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card  { padding: 22px 14px; }
  .values-grid   { grid-template-columns: 1fr; }

  /* Ticker simplified on small screens */
  .ticker-label { padding: 4px 10px; font-size: 0.68rem; }

  .btn { padding: 10px 20px; font-size: 0.82rem; }
  .section-subtitle { font-size: 0.95rem; }
}

/* ── 380px ──────────────────────────────── */
@media (max-width: 380px) {
  .products-grid,
  .products-grid-full { grid-template-columns: 1fr; }
  .hero__float-badge  { display: none; } /* hide on very small */
}
