:root {
  --navy: #0b1f3a;
  --navy-light: #12305c;
  --gold: #c9a227;
  --gold-light: #e0c05a;
  --cream: #faf7f0;
  --ink: #1c2530;
  --muted: #5c6672;
}

* { box-sizing: border-box; }

/* Bootstrap's default container gutter (12px each side) reads as "no padding"
   on phones. Widen it site-wide — this affects every .container/.row since
   Bootstrap's grid math is driven by this one variable. */
:root { --bs-gutter-x: 2.5rem; }
@media (max-width: 575.98px) {
  :root { --bs-gutter-x: 2rem; }
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

h1, h2, h3, h4, .brand-text, .display-heading {
  font-family: 'Playfair Display', Georgia, serif;
}

a { text-decoration: none; }

/* Header */
.site-header { background: #fff; border-bottom: 1px solid rgba(11,31,58,0.08); position: sticky; top: 0; z-index: 50; }

.brand { display: flex; align-items: center; }
.brand-logo { height: 56px; width: auto; display: block; }

.navbar-nav .nav-link { color: var(--navy); font-weight: 500; }
.navbar-nav .nav-link:hover { color: var(--gold); }

.btn-gold {
  background: var(--gold); border-color: var(--gold); color: var(--navy);
  font-weight: 600;
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); }

.btn-navy {
  background: var(--navy); border-color: var(--navy); color: #fff; font-weight: 600;
}
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); color: #fff; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(201,162,39,0.18), transparent 55%);
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  color: var(--gold-light); letter-spacing: .12em; text-transform: uppercase;
  font-size: .8rem; font-weight: 600;
}
.hero h1 { font-size: 2.75rem; font-weight: 700; margin: .5rem 0 1rem; }
.hero p.lead { color: rgba(255,255,255,0.82); max-width: 640px; }

/* Section headings */
.section-tag {
  display: inline-block; background: var(--navy); color: #fff;
  padding: .35rem 1rem; font-weight: 600; font-size: .85rem;
  letter-spacing: .05em; text-transform: uppercase; border-radius: 2px;
}
.section-title { color: var(--navy); font-weight: 700; margin-top: .75rem; }
.section-rule { width: 60px; height: 3px; background: var(--gold); margin: .75rem 0 1.25rem; }

/* Category / product cards */
.card-cat, .card-product {
  border: 1px solid rgba(11,31,58,0.08); border-radius: 10px; overflow: hidden;
  background: #fff; height: 100%; transition: transform .15s ease, box-shadow .15s ease;
}
.card-cat:hover, .card-product:hover {
  transform: translateY(-3px); box-shadow: 0 12px 28px rgba(11,31,58,0.12);
}
.card-img-wrap { aspect-ratio: 4/3; background: #f1efe8; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.card-body-custom { padding: 1.1rem 1.25rem; }
.card-title-custom { color: var(--navy); font-weight: 700; margin-bottom: .35rem; }
.card-text-muted { color: var(--muted); font-size: .92rem; }

/* Why choose us */
.feature-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(201,162,39,0.12); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: .75rem;
}

/* Product detail */
.spec-table th { background: var(--navy); color: #fff; font-weight: 600; }
.spec-table td, .spec-table th { padding: .6rem .9rem; }

/* Filters sidebar (desktop) */
.filter-list a {
  display: block; padding: .5rem .75rem; border-radius: 6px; color: var(--ink); margin-bottom: .35rem;
}
.filter-list a:last-child { margin-bottom: 0; }
.filter-list a:hover, .filter-list a.active { background: var(--navy); color: #fff; }

/* Category filter pills (mobile/tablet) — horizontal scroll instead of a tall list */
.category-pills {
  display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .5rem; margin-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.category-pill {
  flex: 0 0 auto; white-space: nowrap; padding: .5rem 1rem; border-radius: 999px;
  border: 1px solid rgba(11,31,58,0.15); color: var(--ink); font-size: .9rem; font-weight: 500;
}
.category-pill:hover, .category-pill.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.85); }
.footer-logo-chip {
  display: inline-block; background: var(--cream); border-radius: 10px;
  padding: .6rem 1.1rem;
}
.footer-logo { height: 48px; width: auto; display: block; }
.footer-heading { color: var(--gold-light); font-weight: 700; text-transform: uppercase; font-size: .8rem; letter-spacing: .06em; margin-bottom: .9rem; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,0.75); }
.footer-links a:hover { color: var(--gold-light); }
.text-muted-light { color: rgba(255,255,255,0.65); }
.footer-contact-link { color: rgba(255,255,255,0.65); }
.footer-contact-link:hover { color: var(--gold-light); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

@media (max-width: 767px) {
  .hero { padding: 3.5rem 0; }
  .hero h1 { font-size: 2rem; }
}
