/* ============================================================
   MEHTA TRADING AGENCY — Premium Website CSS
   Industrial / Steel aesthetic: Dark charcoal + burnished gold + white
   Font: Oswald (headings) + Source Sans 3 (body)
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --gold:        #C9932A;
  --gold-light:  #E8B84B;
  --gold-dark:   #9E6E18;
  --charcoal:    #1A1A1A;
  --charcoal-2:  #242424;
  --charcoal-3:  #2E2E2E;
  --steel:       #3A3A3A;
  --slate:       #4A4A4A;
  --muted:       #888888;
  --border:      #333333;
  --white:       #FFFFFF;
  --off-white:   #F5F3EF;
  --light-bg:    #F0EDE8;
  --green:       #27AE60;
  --red:         #E74C3C;
  --wa-green:    #25D366;
  --nav-h:       72px;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.12);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.25);
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Utility ───────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; }

.section-label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,147,42,0.1);
  border: 1px solid rgba(201,147,42,0.3);
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-sub { margin: 0 auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,147,42,0.4);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius);
  transition: var(--transition);
  margin-top: 0.75rem;
}
.btn-outline-sm:hover { background: var(--gold); color: var(--charcoal); }

.btn-enquire {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  background: var(--charcoal);
  color: var(--gold);
  border: 1.5px solid var(--charcoal);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn-enquire:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Scroll Reveal ─────────────────────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Fade-in (hero elements) ───────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeInUp 0.7s ease forwards;
}
.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.35s; }
.fade-in:nth-child(3) { animation-delay: 0.5s; }
.fade-in:nth-child(4) { animation-delay: 0.65s; }
.fade-in:nth-child(5) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: none; }
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }

.preloader-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.pl-m { color: var(--gold); }
.pl-ta { color: var(--white); }

.preloader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin: 0 auto 1.2rem;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  animation: preloaderFill 1.1s ease forwards;
}
@keyframes preloaderFill { to { width: 100%; } }

.pl-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

#navbar.scrolled {
  background: var(--charcoal);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.nav-logo-text em {
  display: block;
  font-style: normal;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 6px 12px;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 1px;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 18px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: var(--transition);
  margin-left: 0.5rem;
}
.nav-call-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,18,16,0.88) 0%,
    rgba(20,18,16,0.70) 50%,
    rgba(20,18,16,0.55) 100%
  );
  z-index: 1;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 760px;
  padding: 60px 20px 80px;
  margin-left: clamp(20px, 8vw, 120px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,147,42,0.15);
  border: 1px solid rgba(201,147,42,0.35);
  padding: 7px 16px;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-accent {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  width: fit-content;
}
.stat { text-align: center; padding: 0 1.2rem; }
.stat-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  height: 44px;
  position: relative;
}
.ticker-inner {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
}
.ticker-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold-dark);
  color: var(--white);
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  z-index: 2;
}
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  gap: 1.5rem;
  padding-left: 1.5rem;
}
.ticker-track span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.tick-sep { color: var(--charcoal) !important; opacity: 0.5; font-size: 0.55rem !important; }

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

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  padding-bottom: 3rem;
  padding-right: 2rem;
}
.about-img-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-float {
  position: absolute;
  bottom: 0; right: 0;
  width: 180px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-exp-badge {
  position: absolute;
  top: 1.5rem; left: -1.5rem;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.exp-years {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.exp-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.about-content p {
  color: var(--slate);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}
.ah-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.92rem;
  color: var(--steel);
}
.ah-item i { color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.ah-item span { line-height: 1.4; }

.about-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   WHY US
   ============================================================ */
.why-section { background: var(--charcoal); }
.why-section .section-label { color: var(--gold-light); }
.why-section .section-title { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,0.55); }

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

.why-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.why-card:hover { border-color: var(--gold-dark); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 52px; height: 52px;
  background: rgba(201,147,42,0.12);
  border: 1.5px solid rgba(201,147,42,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.why-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.why-card p { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* Trust Numbers */
.trust-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(201,147,42,0.08);
  border: 1px solid rgba(201,147,42,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.tn-item { text-align: center; padding: 0 2.5rem; }
.tn-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.tn-plus {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.tn-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}
.tn-divider { width: 1px; height: 60px; background: rgba(201,147,42,0.25); }

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

/* Controls */
.product-controls {
  background: var(--white);
  border: 1px solid #E5E0D8;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1.5px solid #DDD8CF;
  border-radius: var(--radius);
  padding: 0 16px;
  transition: var(--transition);
}
.search-box:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,147,42,0.15); }
.search-box i { color: var(--muted); flex-shrink: 0; }
.search-box input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.97rem;
  color: var(--charcoal);
  padding: 12px 0;
}
.search-box input::placeholder { color: #AAA; }
.search-clear {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.search-clear:hover { color: var(--charcoal); }

.filter-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.category-select {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1.5px solid #DDD8CF;
  border-radius: var(--radius);
  padding: 9px 14px;
  cursor: pointer;
  transition: var(--transition);
  display: none; /* shown on mobile */
}
.category-select:focus { outline: none; border-color: var(--gold); }

.filter-tabs { display: flex; flex-wrap: wrap; gap: 6px; }

.filter-tab {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 7px 14px;
  background: transparent;
  border: 1.5px solid #DDD8CF;
  border-radius: 3px;
  cursor: pointer;
  color: var(--slate);
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--gold);
}

/* Loading State */
.products-loading {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--slate);
}
.loading-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid #E5E0D8;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #E8E3DC;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-dark);
}
.product-card.hidden { display: none; }

.product-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--off-white);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 3px;
  background: var(--charcoal);
  color: var(--gold);
}
.product-badge.in-stock { background: var(--green); color: #fff; }
.product-badge.out-stock { background: var(--red); color: #fff; }
.product-badge.limited { background: #E67E22; color: #fff; }

.product-body {
  padding: 1.2rem 1.3rem 0.8rem;
  flex: 1;
}
.product-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.product-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.86rem;
  color: var(--slate);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-availability {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 3px;
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.avail-in { background: rgba(39,174,96,0.1); color: var(--green); }
.avail-out { background: rgba(231,76,60,0.1); color: var(--red); }
.avail-limited { background: rgba(230,126,34,0.1); color: #E67E22; }

.product-footer {
  padding: 0.8rem 1.3rem 1.2rem;
  border-top: 1px solid #F0EBE3;
}

/* No Results / Error */
.no-results, .products-error {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--slate);
}
.no-results i, .products-error i {
  font-size: 3rem;
  color: #CECCCA;
  display: block;
  margin-bottom: 1rem;
}
.no-results h3, .products-error h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.products-error i { color: #E8B84B; }

/* ============================================================
   ENQUIRY
   ============================================================ */
.enquiry-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #0E0D0B 100%);
  position: relative;
  overflow: hidden;
}
.enquiry-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,147,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.enquiry-info .section-label { color: var(--gold-light); }
.enquiry-info .section-title { color: var(--white); }
.enquiry-info > p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }

.enquiry-highlights { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.eq-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.eq-item i { color: var(--gold); width: 18px; text-align: center; }
.eq-item a { color: var(--gold-light); }
.eq-item a:hover { text-decoration: underline; }

.enquiry-contact-quick { display: flex; gap: 10px; }
.eq-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  transition: var(--transition);
}
.eq-quick-btn:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.eq-quick-btn.wa { border-color: var(--wa-green); color: var(--wa-green); }
.eq-quick-btn.wa:hover { background: var(--wa-green); color: var(--white); }

/* Form */
.enquiry-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.required { color: var(--red); }
.form-group input, .form-group select, .form-group textarea {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1.5px solid #E0DAD0;
  border-radius: var(--radius);
  padding: 10px 14px;
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,147,42,0.12);
}
.form-group input.error, .form-group textarea.error { border-color: var(--red); }
.form-error { font-size: 0.8rem; color: var(--red); min-height: 1em; }
.form-group textarea { resize: vertical; min-height: 100px; }
#formError { color: var(--red); font-size: 0.88rem; margin-bottom: 0.75rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--light-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  border: 1px solid #E5E0D8;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.cc-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cc-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.cc-body address, .cc-body p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 0.2rem;
}
.contact-link {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
  transition: var(--transition);
}
.contact-link:hover { color: var(--gold-dark); }
.whatsapp-link { color: var(--wa-green) !important; }
.whatsapp-link:hover { color: #1da851 !important; }

.contact-map { display: flex; flex-direction: column; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrapper { height: 380px; }
.map-wrapper iframe { width: 100%; height: 100%; }
.map-caption {
  background: var(--charcoal);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.map-caption i { color: var(--gold); }
.map-caption span { color: rgba(255,255,255,0.75); flex: 1; }
.map-caption a { color: var(--gold-light); font-size: 0.8rem; white-space: nowrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--charcoal); }

.footer-top { padding: 4rem 0 2rem; border-bottom: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-logo { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand > p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1.5rem; }

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: var(--charcoal-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}
.footer-contact p i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-note { font-size: 0.75rem; margin-top: 4px; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.7);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa-green);
  animation: waPulse 2.5s ease infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.wa-float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--charcoal);
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius);
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.whatsapp-float:hover .wa-float-tooltip { opacity: 1; transform: none; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 5.5rem; right: 2rem;
  z-index: 998;
  width: 42px; height: 42px;
  background: var(--charcoal);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.85rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
#backToTop.visible { opacity: 1; transform: none; pointer-events: all; }
#backToTop:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrapper { max-width: 500px; margin: 0 auto; }
  .enquiry-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--charcoal);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  }
  .nav-links.open { transform: none; opacity: 1; }
  .nav-link { padding: 12px 16px; border-radius: var(--radius); }
  .nav-link::after { display: none; }
  .nav-call-btn { margin: 8px 0 0; justify-content: center; }

  .hero-content { margin-left: 20px; margin-right: 20px; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-stats { width: 100%; }
  .stat { padding: 0 0.8rem; }

  .section { padding: 60px 0; }

  .why-grid { grid-template-columns: 1fr; }

  .filter-tabs { display: none; }
  .category-select { display: block; flex: 1; }

  .form-row { grid-template-columns: 1fr; }

  .trust-numbers { flex-direction: column; padding: 2rem; }
  .tn-divider { width: 60px; height: 1px; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .about-cta-group { flex-direction: column; }
  .enquiry-contact-quick { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}
