@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  color: #1a1a2e;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', sans-serif; color: #1a1a2e; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* Layout */
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
@media(min-width:1024px){ .container { padding: 0 2rem; } }

/* Colors */
:root {
  --navy: #1e3a5f;
  --navy-light: #2a5f8f;
  --red: #c0392b;
  --red-hover: #a93226;
  --dark: #1a1a2e;
  --text-secondary: #555;
  --text-muted: #888;
  --bg-warm: #fafafa;
  --bg-light: #f5f5f5;
  --border: #e8e8e8;
  --green: #25d366;
}

/* ---- Announcement Bar ---- */
.announcement-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--red); color: #fff; text-align: center;
  height: 2.25rem; display: flex; align-items: center; justify-content: center;
}
.announcement-bar p { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.03em; }
.announcement-bar a { font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.announcement-bar a:hover { color: #e0e0e0; }

/* ---- Navbar ---- */
.navbar {
  position: fixed; top: 2.25rem; left: 0; right: 0; z-index: 90;
  background: rgba(255,255,255,0.95); border-bottom: 1px solid #f0f0f0;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.navbar .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.navbar .logo img { height: 2.5rem; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.8125rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: #888; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ''; display: block; height: 2px; background: var(--red);
  border-radius: 1px; margin-top: 0.25rem;
}
.mobile-toggle { display: none; background: none; padding: 0.375rem; color: #333; }
.mobile-menu {
  display: none; background: #fff; border-top: 1px solid #f0f0f0;
  padding: 1rem 1.25rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 0.5rem 0; font-size: 0.875rem; font-weight: 600; color: #888;
}
.mobile-menu a.active { color: var(--navy); }

@media(max-width:768px){
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}

/* ---- Page wrapper ---- */
.page-wrapper { padding-top: calc(4rem + 2.25rem); }

/* ---- Tagline Bar ---- */
.tagline-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 0.75rem 0; text-align: center;
}
.tagline-bar p {
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ---- Hero Slider ---- */
.hero-slider { position: relative; width: 100%; overflow: hidden; }
.hero-slides { display: flex; transition: transform 0.5s ease; }
.hero-slide {
  min-width: 100%; position: relative;
  height: 55vh;
}
@media(min-width:640px){ .hero-slide { height: 65vh; } }
@media(min-width:1024px){ .hero-slide { height: 75vh; } }
.hero-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-slide .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4), transparent);
}
.hero-slide .content {
  position: absolute; inset: 0; display: flex; align-items: center;
}
.hero-slide .content-inner { max-width: 28rem; }
.hero-tag {
  display: inline-block; font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  background: var(--red); color: #fff; padding: 0.25rem 0.75rem; border-radius: 0.25rem;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 0.75rem;
}
@media(min-width:640px){ .hero-title { font-size: 2.5rem; } }
@media(min-width:1024px){ .hero-title { font-size: 3rem; } }
.hero-subtitle { font-size: 0.875rem; color: #e0e0e0; margin-bottom: 1.5rem; line-height: 1.6; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.625rem 1.5rem; font-size: 0.875rem; font-weight: 600;
  color: var(--dark); background: #fff; border-radius: 0.5rem;
  transition: background 0.2s;
}
.hero-cta:hover { background: #f0f0f0; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  color: #fff; display: flex; align-items: center; justify-content: center;
  border: none; transition: background 0.2s; font-size: 1.25rem;
}
.slider-arrow:hover { background: rgba(255,255,255,0.4); }
.slider-arrow.prev { left: 1rem; }
.slider-arrow.next { right: 1rem; }
.slider-dots {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 10;
}
.slider-dot {
  height: 0.5rem; border-radius: 1rem; border: none;
  transition: all 0.3s; background: rgba(255,255,255,0.5); cursor: pointer;
  width: 0.5rem;
}
.slider-dot.active { width: 2rem; background: #fff; }

/* ---- Trust Badges ---- */
.trust-badges { border-bottom: 1px solid #f0f0f0; padding: 1.25rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media(min-width:768px){ .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.trust-icon { color: var(--navy); }
.trust-label { font-size: 0.75rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.trust-sub { font-size: 0.6875rem; color: #888; }

/* ---- Section ---- */
.section { padding: 5rem 0; }
.section.bg-warm { background: var(--bg-warm); }
.section.bg-dark { background: var(--dark); }
.section-tag {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--red); margin-bottom: 0.75rem;
}
.section-title {
  font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 0;
}
@media(min-width:768px){ .section-title { font-size: 1.875rem; } }
.section-desc {
  font-size: 1rem; color: #888; max-width: 40rem; line-height: 1.7; margin-top: 0.75rem;
}

/* ---- Category Icons (circle) ---- */
.category-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; }
@media(min-width:768px){ .category-icons { gap: 3.5rem; } }
.category-icon-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.category-icon-img {
  width: 5rem; height: 5rem; border-radius: 50%; overflow: hidden;
  background: var(--bg-light); border: 2px solid transparent;
  transition: border-color 0.3s; margin-bottom: 0.75rem;
}
.category-icon-item:hover .category-icon-img { border-color: var(--navy); }
.category-icon-img img { width: 100%; height: 100%; object-fit: cover; }
.category-icon-name { font-size: 0.75rem; font-weight: 600; color: #666; transition: color 0.2s; }
.category-icon-item:hover .category-icon-name { color: var(--dark); }

/* ---- Product Grid ---- */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1.25rem; }
@media(min-width:640px){ .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:1024px){ .product-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem 1.25rem; } }

.product-card { cursor: pointer; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-card:hover .product-name { color: var(--navy); }
.product-img {
  aspect-ratio: 1; border-radius: 0.75rem; overflow: hidden;
  background: var(--bg-light); border: 1px solid #f0f0f0; margin-bottom: 0.75rem;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-name {
  font-size: 0.875rem; font-weight: 700; color: var(--dark);
  margin-bottom: 0.375rem; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color 0.2s;
}
.product-features { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 0.5rem; }
.product-feature {
  font-size: 0.6875rem; font-weight: 500; color: #888;
  background: #f0f0f0; padding: 0.125rem 0.5rem; border-radius: 0.25rem;
}
.product-link {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--navy); transition: color 0.2s;
}
.product-link:hover { color: var(--red); }

/* ---- Category Card (Products page) ---- */
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1.25rem; }
@media(min-width:640px){ .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:1024px){ .category-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem 1.25rem; } }
.category-card { cursor: pointer; }
.category-card:hover .cat-img img { transform: scale(1.05); }
.category-card:hover .cat-name { color: var(--navy); }
.cat-img {
  aspect-ratio: 1; border-radius: 1rem; overflow: hidden;
  background: var(--bg-light); margin-bottom: 1rem;
}
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.cat-name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; transition: color 0.2s; }
.cat-desc { font-size: 0.875rem; color: #888; margin-bottom: 0.5rem; line-height: 1.5; }
.cat-link {
  display: inline-flex; align-items: center; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--red);
}

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: #aaa; margin-bottom: 2rem; flex-wrap: wrap; }
.breadcrumb a { color: #aaa; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--dark); }
.breadcrumb .current { color: var(--dark); font-weight: 500; }

/* ---- Why Choose Us ---- */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
@media(min-width:768px){ .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  background: #f0f4f8; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--navy);
}
.feature-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.875rem; color: #888; line-height: 1.6; max-width: 20rem; margin: 0 auto; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 4rem 0; text-align: center;
}
.cta-banner .section-tag { color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.cta-banner h2 { color: #fff; font-size: 1.5rem; margin-bottom: 1rem; }
@media(min-width:768px){ .cta-banner h2 { font-size: 1.875rem; } }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 2rem; max-width: 32rem; margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 2rem; font-size: 0.875rem; font-weight: 600;
  border-radius: 0.5rem; transition: all 0.2s; border: none;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { opacity: 0.9; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-outline { background: transparent; border: 1px solid #ddd; color: var(--dark); }
.btn-outline:hover { border-color: #999; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { opacity: 0.9; }
.btn-white { background: #fff; color: var(--dark); }
.btn-white:hover { background: #f0f0f0; }

/* ---- Product Detail ---- */
.detail-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media(min-width:1024px){ .detail-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.gallery-main {
  position: relative; aspect-ratio: 1; border-radius: 1rem; overflow: hidden;
  background: var(--bg-light); border: 1px solid #f0f0f0; margin-bottom: 0.75rem;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(4px);
  color: var(--dark); display: flex; align-items: center; justify-content: center;
  border: none; box-shadow: 0 1px 3px rgba(0,0,0,0.1); transition: background 0.2s;
  font-size: 1.125rem;
}
.gallery-arrow:hover { background: #fff; }
.gallery-arrow.prev { left: 0.75rem; }
.gallery-arrow.next { right: 0.75rem; }
.thumbnails { display: flex; gap: 0.5rem; }
.thumb {
  width: 5rem; height: 5rem; border-radius: 0.5rem; overflow: hidden;
  border: 2px solid transparent; opacity: 0.6; cursor: pointer; transition: all 0.2s;
  flex-shrink: 0; background: none; padding: 0;
}
.thumb.active { border-color: var(--navy); opacity: 1; }
.thumb:hover { opacity: 0.9; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--red); margin-bottom: 0.75rem; }
.detail-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
@media(min-width:768px){ .detail-title { font-size: 1.875rem; } }
.detail-features { margin-bottom: 2rem; }
.detail-feature { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.detail-check {
  width: 1.25rem; height: 1.25rem; border-radius: 50%; background: #f0f4f8;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 0.625rem; color: var(--navy);
}
.detail-feature span { font-size: 0.875rem; color: #666; }
.specs-box {
  background: var(--bg-warm); border-radius: 0.75rem; padding: 1.5rem;
  border: 1px solid #f0f0f0; margin-bottom: 2rem;
}
.specs-box h3 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #aaa; margin-bottom: 1rem; }
.spec-item { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.625rem; font-size: 0.875rem; color: #666; }
.spec-dot { width: 0.375rem; height: 0.375rem; background: var(--navy); border-radius: 50%; margin-top: 0.5rem; flex-shrink: 0; }

/* ---- About ---- */
.about-hero { background: var(--dark); padding: 5rem 0 6rem; }
.about-hero .section-tag { color: var(--red); }
.about-hero h1 { color: #fff; font-size: 2rem; line-height: 1.2; margin-bottom: 1.5rem; }
@media(min-width:768px){ .about-hero h1 { font-size: 2.5rem; } }
@media(min-width:1024px){ .about-hero h1 { font-size: 3rem; } }
.about-hero p { color: #aaa; font-size: 1rem; line-height: 1.6; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
@media(min-width:1024px){ .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text p { font-size: 0.875rem; color: #888; line-height: 1.7; margin-bottom: 1.25rem; }
.about-img { border-radius: 1rem; overflow: hidden; }
.about-img img { width: 100%; object-fit: cover; border-radius: 1rem; }

.values-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
@media(min-width:768px){ .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  background: #fff; border: 1px solid #f0f0f0; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 1.25rem;
  color: var(--navy); box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.value-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-desc { font-size: 0.875rem; color: #888; line-height: 1.6; max-width: 20rem; margin: 0 auto; }

.stats-card {
  border-radius: 1rem; overflow: hidden; border: 1px solid #f0f0f0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media(min-width:768px){ .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { padding: 2.5rem 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
@media(min-width:768px){ .stat-item { border-bottom: none; } }
.stat-value { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
@media(min-width:768px){ .stat-value { font-size: 2.5rem; } }
.stat-label { font-size: 0.75rem; color: #a8c4e0; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

/* ---- Contact ---- */
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3.5rem; }
@media(min-width:768px){ .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  background: var(--bg-warm); border-radius: 0.75rem; padding: 1.5rem;
  border: 1px solid #f0f0f0;
}
.contact-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: #fff; border: 1px solid #f0f0f0; display: flex;
  align-items: center; justify-content: center; margin-bottom: 1.25rem;
  color: var(--navy); box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.contact-card .label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #aaa; margin-bottom: 0.5rem; }
.contact-card .value { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 0.25rem; }
.contact-card .value a { color: var(--dark); transition: color 0.2s; }
.contact-card .value a:hover { color: var(--navy); }
.contact-card .sub { font-size: 0.875rem; color: #888; }

.whatsapp-banner {
  background: var(--dark); border-radius: 1rem; padding: 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: center; text-align: center;
}
@media(min-width:768px){
  .whatsapp-banner { flex-direction: row; text-align: left; padding: 2rem 3rem; justify-content: space-between; }
}
.whatsapp-banner h2 { color: #fff; font-size: 1.5rem; margin-bottom: 0.5rem; }
.whatsapp-banner p { color: #aaa; font-size: 0.875rem; }

.hours-grid { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 28rem; }
@media(min-width:640px){ .hours-grid { grid-template-columns: repeat(2, 1fr); gap: 0 2rem; } }
.hour-row {
  display: flex; justify-content: space-between; padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.hour-day { font-size: 0.875rem; font-weight: 500; color: var(--dark); }
.hour-time { font-size: 0.875rem; color: #888; }

/* ---- Distributors ---- */
.filters { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
@media(min-width:640px){ .filters { flex-direction: row; } }
.filter-input, .filter-select {
  width: 100%; background: var(--bg-warm); border: 1px solid #ddd;
  color: var(--dark); border-radius: 0.5rem; padding: 0.625rem 1rem;
  font-size: 0.875rem; transition: all 0.2s; outline: none;
}
.filter-input:focus, .filter-select:focus { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(30,58,95,0.15); }
@media(min-width:640px){ .filter-select { width: 14rem; } }
.filter-input-wrap { position: relative; flex: 1; }
.filter-icon { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: #aaa; }
.filter-input { padding-left: 2.5rem; }

.dist-table { width: 100%; border: 1px solid #ddd; border-radius: 0.75rem; overflow: hidden; border-spacing: 0; }
.dist-table th {
  background: var(--dark); color: #fff; padding: 0.875rem 1.5rem;
  text-align: left; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.dist-table td { padding: 1rem 1.5rem; font-size: 0.875rem; border-top: 1px solid #f0f0f0; }
.dist-table tr:nth-child(even) td { background: var(--bg-warm); }
.dist-table tr:hover td { background: rgba(30,58,95,0.04); }
.dist-table .city-cell { display: inline-flex; align-items: center; gap: 0.375rem; }
.dist-table .phone-link { display: inline-flex; align-items: center; gap: 0.375rem; color: var(--navy); font-weight: 500; }
.dist-table .phone-link:hover { text-decoration: underline; }

.dist-card { background: #fff; border: 1px solid #ddd; border-radius: 0.75rem; padding: 1rem; margin-bottom: 0.75rem; }
.dist-card h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.5rem; }
.dist-card .meta { font-size: 0.75rem; color: #888; margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.375rem; }
.dist-card .phone-link { font-size: 0.75rem; font-weight: 500; color: var(--navy); display: inline-flex; align-items: center; gap: 0.375rem; }

.result-count { font-size: 0.75rem; color: #aaa; margin-top: 1.5rem; }

/* ---- Footer ---- */
.footer { background: var(--dark); color: #fff; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media(min-width:768px){ .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.footer .logo img { height: 2.5rem; margin-bottom: 1rem; }
.footer p { font-size: 0.875rem; color: #aaa; line-height: 1.6; max-width: 18rem; }
.footer h4 {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: #aaa; margin-bottom: 1.25rem;
}
.footer ul li { margin-bottom: 0.75rem; }
.footer ul a { font-size: 0.875rem; color: #bbb; transition: color 0.2s; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  margin-top: 3.5rem; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: #666; max-width: none; }

/* ---- Flex helpers ---- */
.flex-between { display: flex; align-items: flex-end; justify-content: space-between; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-14 { margin-top: 3.5rem; }
.hidden-mobile { display: none; }
@media(min-width:768px){ .hidden-mobile { display: inline-flex; } }
.show-mobile { display: block; }
@media(min-width:768px){ .show-mobile { display: none; } }
