/* ============================================================
   OHMS K AUDIO - Main Stylesheet
   Dark Luxury Gold Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS Custom Properties ────────────────────────────────── */
:root {
  --bg-primary:    #080810;
  --bg-secondary:  #0e0e1a;
  --bg-card:       #13131f;
  --bg-card-hover: #1a1a2e;
  --gold:          #c9a84c;
  --gold-light:    #e8c96d;
  --gold-dark:     #9a7a32;
  --gold-glow:     rgba(201,168,76,0.15);
  --text-primary:  #f0ece0;
  --text-muted:    #7a7060;
  --text-light:    #b0a898;
  --border:        rgba(201,168,76,0.2);
  --border-bright: rgba(201,168,76,0.5);
  --shadow-gold:   0 4px 30px rgba(201,168,76,0.15);
  --shadow-card:   0 8px 40px rgba(0,0,0,0.6);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading:  'Playfair Display', serif;
  --font-body:     'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── Top Bar ───────────────────────────────────────────────── */
.top-bar {
  background: #060609;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 12px;
  color: var(--text-light);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar a:hover { color: var(--gold); }
.top-bar-phone {
  display: flex; align-items: center; gap: 6px;
  color: var(--gold); font-weight: 600;
}
.top-bar-hours { display: flex; align-items: center; gap: 6px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; transition: var(--transition);
}
.social-icons a:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ─── Header / Navbar ───────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,8,16,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-gold); }
.navbar {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 16px 0; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
  color: #060609;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  letter-spacing: -1px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}
.logo-text .brand-sub {
  font-size: 10px; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  color: var(--text-light);
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: var(--gold-glow);
}
.nav-link svg { width: 14px; height: 14px; transition: transform 0.3s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 10px 14px;
  font-size: 13px; color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown a:hover {
  color: var(--gold); background: var(--gold-glow);
  padding-left: 20px;
}

/* Nav CTA & Hamburger */
.nav-cta {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.btn-outline-gold {
  padding: 9px 20px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gold);
  color: var(--gold); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--gold); color: #060609;
  box-shadow: var(--shadow-gold);
}
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.95);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  backdrop-filter: blur(20px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 28px; font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  font-size: 32px; cursor: pointer; color: var(--text-muted);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: none; transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #060609;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}
.btn-ghost {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--border-bright);
}
.btn-ghost:hover { background: var(--gold-glow); border-color: var(--gold); color: var(--gold); }

.btn-call {
  background: linear-gradient(135deg, #1a6b1a, #0f4f0f);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,107,26,0.35);
  padding: 10px 18px; font-size: 13px;
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,107,26,0.5); }

.btn-enquire {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #060609;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
  padding: 10px 18px; font-size: 13px;
}
.btn-enquire:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.5); }

/* ─── Hero Slider ───────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  height: 580px;
}
.hero-slides { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(0.77,0,0.175,1); }
.hero-slide {
  min-width: 100%; height: 100%;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,8,16,0.92) 40%, rgba(8,8,16,0.3) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active .hero-bg { transform: scale(1); }

.hero-content {
  position: relative; z-index: 2;
  max-width: 620px; padding: 0 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 30px;
  border: 1px solid var(--border-bright);
  background: var(--gold-glow);
  color: var(--gold); font-size: 11px;
  font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 16px;
}
.hero-title span { color: var(--gold); }
.hero-desc {
  font-size: 16px; color: var(--text-light);
  margin-bottom: 32px; max-width: 480px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider controls */
.hero-dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(201,168,76,0.3);
  cursor: pointer; transition: var(--transition);
  border: none;
}
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-bright);
  color: var(--gold); width: 48px; height: 48px;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; cursor: pointer;
  transition: var(--transition); font-size: 18px;
}
.hero-arrow:hover { background: var(--gold); color: #060609; }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* ─── Section Headings ──────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.section-heading { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block; font-size: 11px;
  font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 14px;
}
.section-title span { color: var(--gold); }
.section-desc {
  font-size: 15px; color: var(--text-light);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 16px auto 0;
}

/* ─── Categories Row ─────────────────────────────────────── */
.categories-section { background: var(--bg-secondary); }

/* Full-width 2-row grid, fills viewport edge-to-edge — Desktop */
.categories-row {
  display: grid;
  grid-template-rows: repeat(2, 220px);
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04); /* gap color */
  margin-left: calc(-1 * ((100vw - 100%) / 2));
  margin-right: calc(-1 * ((100vw - 100%) / 2));
  width: 100vw;
}

/* Each tile fills its grid cell */
.cat-tile {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  background: #0f0f10;
}

/* "View All" special tile */
.cat-tile-all {
  background: rgba(15, 15, 16, 0.98);
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.cat-tile-all-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cat-tile-all-icon {
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.3s ease;
}
.cat-tile-all:hover .cat-tile-all-icon {
  transform: translateX(6px);
}
.cat-tile-all:hover::after { display: none; }

/* Product photo — contain so the full image is always visible */
.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  box-sizing: border-box;
}

/* Dark gradient overlay — readable label on any image */
.cat-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.0) 100%
  );
  transition: background 0.4s ease;
  pointer-events: none;
}

/* Category name — pinned to bottom above the overlay */
.cat-tile-name {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
  transition: color 0.3s ease, bottom 0.3s ease;
  padding: 0 6px;
  line-height: 1.3;
}

/* Hover: zoom image, lift label gold */
.cat-tile:hover img { transform: scale(1.1); }
.cat-tile:hover::after {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(201,168,76,0.06) 60%,
    transparent 100%
  );
}
.cat-tile:hover .cat-tile-name {
  color: var(--gold);
  bottom: 16px;
}

/* Gold underline sweep */
.cat-tile::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  z-index: 3;
  transition: width 0.4s ease;
  pointer-events: none;
}
.cat-tile:hover::before { width: 100%; }

/* ─── Responsive Categories ──────────────────────────────── */

/* Tablet: 4 columns × 4 rows */
@media (max-width: 900px) {
  .categories-row {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 180px);
  }
  /* 13 tiles + 1 view-all = 16 cells, fits perfectly in 4x4 */
  .cat-tile-name { font-size: 10px; }
}

/* Mobile: 2 columns × 7 rows, horizontal scroll on tiny screens */
@media (max-width: 480px) {
  .categories-row {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(7, 160px);
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .cat-tile img { padding: 8px; }
  .cat-tile-name { font-size: 10px; bottom: 8px; }
}

/* ─── About Teaser ──────────────────────────────────────────── */
.about-teaser { background: var(--bg-primary); }
.about-teaser-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-teaser-img {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-teaser-img img { width: 100%; height: 380px; object-fit: cover; }
.about-teaser-img::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(8,8,16,0.9); backdrop-filter: blur(10px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md); padding: 16px 20px;
  display: flex; gap: 12px; align-items: center;
}
.about-badge-num {
  font-family: var(--font-heading); font-size: 32px;
  font-weight: 900; color: var(--gold); line-height: 1;
}
.about-badge-text { font-size: 12px; color: var(--text-light); line-height: 1.4; }
.about-content .section-heading { text-align: left; margin-bottom: 24px; }
.about-content .divider { margin: 16px 0 0; }
.about-text { color: var(--text-light); line-height: 1.8; margin: 20px 0 28px; font-size: 15px; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.about-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-light);
}
.about-feature span:first-child {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-glow); border: 1px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 11px; flex-shrink: 0;
}

/* ─── Product Cards ─────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden; transition: var(--transition);
  position: relative; display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--gold); transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.product-card-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 4px 10px; border-radius: 20px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
}
.badge-new { background: #1a4d1a; color: #4caf50; }
.badge-best { background: rgba(201,168,76,0.15); color: var(--gold); }
.badge-hot { background: #4d1a1a; color: #f44336; }

.product-img-wrap {
  height: 220px; overflow: hidden;
  background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
}
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-category {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 17px; font-weight: 600;
  line-height: 1.3; margin-bottom: 10px; color: var(--text-primary);
}
.product-specs {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px;
}
.spec-tag {
  padding: 3px 9px; border-radius: 20px;
  font-size: 11px; color: var(--text-light);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.product-card-actions {
  display: flex; gap: 8px; margin-top: auto; padding-top: 4px;
}
.product-card-actions .btn { flex: 1; justify-content: center; }

/* ─── Why Choose Us ─────────────────────────────────────────── */
.why-section { background: var(--bg-secondary); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); border-color: var(--border-bright); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: var(--gold-glow); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px;
}
.why-title {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 600;
  margin-bottom: 10px; color: var(--text-primary);
}
.why-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #0e0e1a, #13131f);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-inner {
  display: flex; justify-content: space-around;
  gap: 24px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 42px; font-weight: 900;
  color: var(--gold); line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials-section { background: var(--bg-primary); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px; transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-bright); transform: translateY(-2px); }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 14px; color: var(--text-light);
  line-height: 1.7; margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-glow); border: 2px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 16px;
  color: var(--gold); font-weight: 700;
}
.author-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.author-role { font-size: 11px; color: var(--text-muted); }

/* ─── Newsletter ────────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(201,168,76,0.02));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.newsletter-inner {
  display: flex; align-items: center; gap: 64px;
  flex-wrap: wrap; justify-content: center;
}
.newsletter-text { max-width: 400px; }
.newsletter-text h3 {
  font-family: var(--font-heading);
  font-size: 28px; font-weight: 700; margin-bottom: 8px;
}
.newsletter-text p { font-size: 14px; color: var(--text-light); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 13px 20px; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary); font-size: 14px;
  outline: none; min-width: 280px;
  transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.newsletter-form input::placeholder { color: var(--text-muted); }

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: #060609;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-heading {
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 12px; line-height: 1.5;
}
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0; margin-top: 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-text { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ─── Page Banner ───────────────────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
  border-bottom: 1px solid var(--border);
  padding: 64px 0 48px;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.page-banner-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--text-muted); font-size: 10px; }
.page-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700; line-height: 1.1;
}
.page-title span { color: var(--gold); }
.page-subtitle { font-size: 15px; color: var(--text-light); margin-top: 10px; }

/* ─── Products Page ─────────────────────────────────────────── */
.products-page { padding: 64px 0; }
.products-filter {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 18px; border-radius: 30px;
  border: 1px solid var(--border);
  background: transparent; color: var(--text-light);
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold); background: var(--gold-glow);
  color: var(--gold);
}
img.filter-icon {
  width: 26px; height: 26px; object-fit: contain; border-radius: 50%;
  background: #ffffff; padding: 3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.filter-btn:hover img.filter-icon, .filter-btn.active img.filter-icon {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
}

/* ─── Product Detail Page ───────────────────────────────────── */
.product-detail { padding: 64px 0; }
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.product-detail-img {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  min-height: 400px;
}
.product-detail-img img { width: 100%; object-fit: contain; padding: 20px; }
.product-detail-info { }
.product-detail-category {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.product-detail-name {
  font-family: var(--font-heading);
  font-size: 36px; font-weight: 700; line-height: 1.2;
  margin-bottom: 16px;
}
.product-detail-desc {
  font-size: 15px; color: var(--text-light); line-height: 1.7;
  margin-bottom: 28px;
}
.specs-table {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; margin-bottom: 28px;
}
.specs-table-header {
  padding: 14px 20px;
  background: var(--gold-glow);
  border-bottom: 1px solid var(--border);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
}
.spec-row {
  display: flex; padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.spec-row:last-child { border-bottom: none; }
.spec-key { color: var(--text-muted); width: 160px; flex-shrink: 0; }
.spec-value { color: var(--text-primary); font-weight: 500; }
.product-detail-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.product-detail-actions .btn { font-size: 15px; padding: 14px 32px; }

/* ─── About Page ────────────────────────────────────────────── */
.about-page { }
.about-hero {
  background: var(--bg-secondary);
  padding: 80px 0;
}
.about-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-mission {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px; margin-top: 60px;
}
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 40px;
}
.mission-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
  transition: var(--transition);
}
.mission-item:hover { border-color: var(--border-bright); }
.mission-icon { font-size: 28px; margin-bottom: 12px; }
.mission-title { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.mission-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── Contact Page ──────────────────────────────────────────── */
.contact-page { padding: 80px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px; height: fit-content;
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 24px; font-weight: 700; margin-bottom: 28px;
}
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--gold-glow); border: 1px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-item-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.contact-item-value {
  font-size: 14px; color: var(--text-primary); line-height: 1.5;
}
.contact-item-value a:hover { color: var(--gold); }
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 24px; font-weight: 700; margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary); font-size: 14px;
  font-family: var(--font-body);
  outline: none; transition: var(--transition);
  resize: vertical;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── Enquiry Modal ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  padding: 24px;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 40px; max-width: 520px; width: 100%;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition);
  position: relative;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--text-muted);
  font-size: 24px; cursor: pointer; line-height: 1;
  transition: var(--transition);
}
.modal-close:hover { color: var(--text-primary); }
.modal-title {
  font-family: var(--font-heading);
  font-size: 24px; font-weight: 700; margin-bottom: 6px;
}
.modal-subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.modal .form-group { margin-bottom: 16px; }

/* ─── Floating WhatsApp ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition); font-size: 26px;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }

/* ─── Toast Notification ────────────────────────────────────── */
.toast {
  position: fixed; bottom: 100px; right: 28px;
  background: var(--bg-card); border: 1px solid var(--border-bright);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px; max-width: 320px;
  box-shadow: var(--shadow-card);
  transform: translateX(120%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 1500;
}
.toast.show { transform: translateX(0); }
.toast-title { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.toast-msg { font-size: 12px; color: var(--text-muted); }

/* ─── Utility ───────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-teaser-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .top-bar-left { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { height: 480px; }
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { gap: 32px; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .hero { height: 420px; }
  .hero-btns { flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: unset; }
}
}

/* ─── SINGLE PRODUCT PAGE ─────────────────────────────────── */
.product-page .page-banner { background: var(--bg-card); border-bottom: 1px solid var(--border); }
.single-product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; }
.single-product-gallery {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.single-product-gallery img { max-width: 100%; height: auto; display: block; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); }
.single-product-gallery .product-img-placeholder { font-size: 120px; }

.product-gallery-thumbnails {
  display: flex; gap: 12px; margin-top: 24px; justify-content: center; width: 100%; flex-wrap: wrap;
}
.product-thumbnail {
  width: 80px; height: 80px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition); object-fit: cover; background: var(--bg-card);
}
.product-thumbnail:hover, .product-thumbnail.active { border-color: var(--gold); }

.single-product-info { display: flex; flex-direction: column; }
.specs-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
}
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table td { padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text-light); font-size: 15px; }
.specs-table tr:last-child td { border-bottom: none; padding-bottom: 0; }
.specs-table td:first-child { font-weight: 600; color: var(--text-white); width: 40%; }
.product-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .single-product-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-actions { flex-direction: column; }
  .single-product-gallery { padding: 24px; }
}
