/* ==========================================================================
   SELLEH SHOP KENYA — stylesheet
   Palette: black / gold / white, with a thin Kenyan-flag accent.
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --charcoal: #1b1b1b;
  --charcoal-2: #232323;
  --border: #2c2c2c;

  --gold: #d4af37;
  --gold-light: #f2d675;
  --gold-dark: #a8842a;
  --gold-gradient: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));

  --white: #ffffff;
  --off-white: #f4efe3;
  --gray: #a6a6a6;
  --gray-dim: #7a7a7a;

  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --kenya-red: #bb0000;
  --kenya-green: #006600;

  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", "Segoe UI", Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
  --container: 1240px;
}

/* ── Reset ────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  width: 100%;
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}
/* The hidden attribute must always win, even over classes like .btn or
   .testimonial-grid that set their own unconditional `display`. */
[hidden] {
  display: none !important;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  margin: 0 0 0.5em;
  line-height: 1.2;
  color: var(--white);
}
p {
  margin: 0 0 1em;
}
button {
  font-family: inherit;
  cursor: pointer;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section-tight {
  padding: 64px 0;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head .btn {
  margin-top: 10px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.section-head p {
  color: var(--gray);
  font-size: 1.05rem;
}
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.divider-line {
  width: 70px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--gold-gradient);
  border-radius: 3px;
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn .icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.btn-primary {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.4);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}
.btn-block {
  width: 100%;
}
.btn-order {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff;
  flex: 1;
  padding: 12px 16px;
  font-size: 0.88rem;
}
.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.btn-call {
  background: var(--charcoal-2);
  color: var(--gold);
  border-color: var(--border);
  padding: 12px 14px;
}
.btn-call:hover {
  border-color: var(--gold);
  background: var(--charcoal);
}
.btn-disabled {
  opacity: 0.6;
  filter: grayscale(0.4);
}

/* ── Announcement marquee ────────────────────────────────────────────── */
.marquee-bar {
  background: var(--gold-gradient);
  color: var(--black);
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.4px;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 26s linear infinite;
  padding: 8px 0;
}
.marquee-track span {
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Header ───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  width: 46px;
  height: 46px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text .brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
}
.brand-text .brand-name span {
  color: var(--gold);
}
.brand-text .brand-sub {
  font-size: 0.62rem;
  letter-spacing: 3px;
  color: var(--gray);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--off-white);
  position: relative;
  padding: 4px 0;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.25s ease;
}
.nav-menu a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--off-white);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.icon-btn.whatsapp:hover {
  color: var(--whatsapp);
  border-color: var(--whatsapp);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 120px 0 90px;
  background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.16), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.12), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.08), transparent 55%), var(--black);
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--off-white);
}
.trust-chip svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

/* ── Stats ────────────────────────────────────────────────────────────── */
.stats {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  padding: 48px 0;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold);
  font-weight: 700;
}
.stat-label {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 6px;
  letter-spacing: 0.4px;
}

/* ── Why choose us ────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--black);
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

/* ── Shop toolbar ─────────────────────────────────────────────────────── */
.shop-section {
  background: var(--black);
}
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.search-box {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
}
.search-box svg {
  width: 18px;
  height: 18px;
  fill: var(--gray);
  flex-shrink: 0;
}
.search-box input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--white);
  font-family: inherit;
  font-size: 0.92rem;
}
.search-box input::placeholder {
  color: var(--gray-dim);
}
.sort-box select {
  background: var(--black-soft);
  border: 1px solid var(--border);
  color: var(--off-white);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 0.88rem;
  outline: 0;
}

.category-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 22px;
  margin-bottom: 6px;
  scrollbar-width: thin;
}
.category-pills::-webkit-scrollbar {
  height: 5px;
}
.category-pills::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
.pill {
  flex-shrink: 0;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--charcoal);
  color: var(--off-white);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.pill:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.pill.active {
  background: var(--gold-gradient);
  color: var(--black);
  border-color: transparent;
  font-weight: 600;
}

.result-count {
  color: var(--gray-dim);
  font-size: 0.85rem;
  margin-bottom: 18px;
}

/* ── Product grid ─────────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}
.product-card {
  position: relative;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
}
.product-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--black-soft);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.08);
}
.product-card.is-soldout .product-img img {
  filter: grayscale(0.85) brightness(0.6);
}
.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-open {
  display: block;
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  text-align: left;
  color: inherit;
  cursor: pointer;
  font: inherit;
}
.product-open .product-body {
  padding-bottom: 4px;
  flex: 0;
}
.product-body-rest {
  padding-top: 8px;
}
.product-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin: 0;
}
.product-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin: 0;
}
.product-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 2px 0 4px;
  min-height: 20px;
}
.stars {
  position: relative;
  display: inline-block;
  font-size: 0.92rem;
  line-height: 1;
}
.stars-bg {
  color: #3a3a3a;
  letter-spacing: 2px;
}
.stars-fg {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--gold);
  letter-spacing: 2px;
}
.rating-num {
  font-size: 0.8rem;
  color: var(--off-white);
  font-weight: 600;
}
.rating-count {
  font-size: 0.78rem;
  color: var(--gray-dim);
}
.no-reviews {
  font-size: 0.78rem;
  color: var(--gray-dim);
  font-style: italic;
}
.rate-link {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  margin-left: auto;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.rate-link:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold-light);
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 4px 0 14px;
}
.price-now {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--font-head);
}
.price-old {
  font-size: 0.85rem;
  color: var(--gray-dim);
  text-decoration: line-through;
}
.product-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff;
  background: var(--gold-dark);
}
.badge-hot {
  background: var(--kenya-red);
}
.badge-new {
  background: #2f6fed;
}
.badge-bestseller {
  background: var(--gold-dark);
  color: var(--black);
}
.badge-sale {
  left: auto;
  right: 14px;
  background: var(--kenya-green);
}
.badge-soldout {
  background: #444;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}
.empty-state h3 {
  color: var(--white);
}
.catalog-empty .btn {
  margin-top: 18px;
}

.reviews-empty {
  text-align: center;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto 10px;
  line-height: 1.7;
}

.in-stock-seo {
  padding-bottom: 72px;
}
.seo-product-list {
  columns: 2;
  column-gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.9;
}
.seo-product-list a {
  color: var(--gold-light);
  text-decoration: none;
}
.seo-product-list a:hover {
  text-decoration: underline;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
}

/* ── Product modal ────────────────────────────────────────────────────── */
.product-modal[hidden] {
  display: none !important;
}
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}
.product-modal-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.pm-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 2;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pm-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.pm-info {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pm-info h2 {
  margin: 0;
  font-size: 1.6rem;
}
.pm-desc {
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}
.review-form {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-form h3 {
  margin: 0;
  font-size: 1.05rem;
}
.review-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray);
}
.review-form input,
.review-form textarea {
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  padding: 10px 12px;
  font: inherit;
}
.star-picker {
  display: flex;
  gap: 4px;
}
.star-picker button {
  background: none;
  border: 0;
  padding: 0;
  font-size: 1.8rem;
  color: #3a3a3a;
  cursor: pointer;
  line-height: 1;
}
.star-picker button.on,
.star-picker button:hover {
  color: var(--gold);
}
.review-form-error {
  color: #ff8b8b;
  min-height: 1.2em;
  margin: 0;
  font-size: 0.85rem;
}
.review-form-success {
  color: var(--gold-light);
  font-weight: 600;
}
.pm-review-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.pm-review {
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}
.pm-review strong {
  display: block;
  margin: 4px 0;
}
.pm-review p {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

/* ── Testimonials ─────────────────────────────────────────────────────── */
.testimonials {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card .stars-bg,
.testimonial-card .stars-fg {
  font-size: 1rem;
}
.testimonial-quote {
  color: var(--off-white);
  font-style: italic;
  margin: 14px 0 18px;
  line-height: 1.7;
}
.testimonial-card-promise {
  text-align: center;
}
.testimonial-card-promise:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.testimonial-card-promise h3 {
  font-size: 1.05rem;
}
.testimonial-card-promise .testimonial-quote {
  font-style: normal;
  color: var(--gray);
  font-size: 0.92rem;
  margin: 6px 0 0;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 700;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.92rem;
}
.testimonial-loc {
  font-size: 0.78rem;
  color: var(--gray-dim);
}

/* ── Location ─────────────────────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
  filter: grayscale(0.3) contrast(1.1);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}
.info-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-row .icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-row .icon-circle svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}
.info-row h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  color: var(--white);
}
.info-row p {
  margin: 0;
  color: var(--gray);
  font-size: 0.88rem;
}
.info-card .btn {
  margin-top: 6px;
}

/* ── CTA banner ───────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--gold-gradient);
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  margin: 0 24px;
}
.cta-banner h2 {
  color: var(--black);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.cta-banner p {
  color: rgba(10, 10, 10, 0.75);
  max-width: 520px;
  margin: 0 auto 26px;
}
.cta-banner .btn-primary {
  background: var(--black);
  color: var(--gold-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.cta-banner .btn-primary:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .brand {
  margin-bottom: 14px;
}
.footer-brand p {
  color: var(--gray);
  font-size: 0.88rem;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--gold-light);
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--gray);
  font-size: 0.88rem;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--gray-dim);
  font-size: 0.8rem;
}
.flag-strip {
  display: inline-flex;
  height: 3px;
  width: 26px;
  border-radius: 2px;
  overflow: hidden;
  vertical-align: middle;
}
.flag-strip span {
  flex: 1;
}
.flag-strip span:nth-child(1) {
  background: #000;
}
.flag-strip span:nth-child(2) {
  background: #bb0000;
}
.flag-strip span:nth-child(3) {
  background: #006600;
}

/* ── Floating buttons ─────────────────────────────────────────────────── */
.float-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 200;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
}
.fab:hover {
  transform: scale(1.08);
}
.fab-whatsapp {
  background: var(--whatsapp);
  position: relative;
}
.fab-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.fab-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: pulse-ring 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
.fab-top {
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  border: 1px solid var(--gold);
  color: var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.fab-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.fab-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    background: var(--black-soft);
    border-bottom: 1px solid transparent;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    gap: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .nav-menu.open {
    max-height: 420px;
    padding: 18px 24px 26px;
    gap: 18px;
    border-bottom-color: var(--border);
  }
  .nav-toggle {
    display: inline-flex;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .pm-grid {
    grid-template-columns: 1fr;
  }
  .seo-product-list {
    columns: 1;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    gap: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cta-banner {
    margin: 0 16px;
    padding: 40px 22px;
  }
  .header-actions .icon-btn:not(.whatsapp) {
    display: none;
  }
  .hero {
    padding: 100px 0 70px;
  }
  .product-actions {
    flex-wrap: wrap;
  }
}
