/* Skya Hardware Hub — ported from github.com/iabishnoi/skya-hardware-hub */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --background: #fdfcfa;
  --foreground: #1a2744;
  --card: rgba(255, 255, 255, 0.82);
  --muted: #64748b;
  --border: #e2e8f0;
  --accent: #5eb8e8;
  --accent-hover: #3da8de;
  --primary: #1a2744;
  --primary-fg: #fdfcfa;
  --secondary: rgba(245, 243, 240, 0.6);
  --radius: 1rem;
  --shadow-card: 0 6px 18px -6px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 18px 40px -12px rgba(15, 23, 42, 0.18);
  --shadow-accent: 0 14px 32px -10px rgba(94, 184, 232, 0.45);
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  --container: min(1280px, 92%);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  background-color: #f4ece0;
  background-image: url("/assets/images/bg-mandala.jpg");
  background-repeat: repeat;
  background-size: 520px auto;
  background-attachment: fixed;
  background-position: center top;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--foreground);
  background: transparent;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
}

a { color: var(--accent-hover); text-decoration: none; }
a:hover { color: var(--primary); }
img { max-width: 100%; display: block; height: auto; }

.container, .container-x {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 639px) {
  .container, .container-x {
    width: 100%;
    padding-left: clamp(0.75rem, 3.5vw, 1rem);
    padding-right: clamp(0.75rem, 3.5vw, 1rem);
  }
}

@media (min-width: 640px) {
  .container, .container-x { padding-left: 1.5rem; padding-right: 1.5rem; }
}

.industrial-pattern {
  background-image:
    linear-gradient(to right, rgba(221, 226, 230, 0.5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(221, 226, 230, 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
}

.section-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
}
.section-pattern.opacity-low { opacity: 0.1; }

/* Buttons — repo .btn-accent / .btn-outline */
.btn-accent, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: 0.2s;
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover, .btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  color: var(--primary);
}

.btn-outline, .btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  text-decoration: none !important;
  transition: 0.2s;
}
.btn-outline:hover { background: var(--primary); color: var(--primary-fg); }
.btn-outline-light { border-color: var(--border); }
.btn-outline-light:hover { border-color: var(--accent); background: var(--secondary); color: var(--primary); }

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin: 0 0 0.35rem;
}
.section-title { font-size: clamp(1.45rem, 3vw, 2.25rem); margin: 0.25rem 0; }
.section-sub { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 0.95rem; }
.section-head-center { text-align: center; margin-bottom: 2.5rem; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.link-arrow { font-weight: 600; color: var(--accent-hover); font-size: 0.9rem; }
.hide-mobile { display: none; }
@media (min-width: 640px) { .hide-mobile { display: inline; } }
.text-center-mobile { text-align: center; margin-top: 1.5rem; }
@media (min-width: 640px) { .text-center-mobile { display: none; } }

/* Header — transparent over mandala background */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  max-width: 100vw;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.site-header.is-scrolled {
  background: rgba(253, 252, 250, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.08);
}
.site-header.is-scrolled .main-nav {
  background: rgba(253, 252, 250, 0.5);
}

.top-bar {
  font-size: 0.7rem;
  color: var(--muted);
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(226, 232, 240, 0.45);
}
@media (min-width: 640px) { .top-bar { font-size: 0.75rem; } }

.top-ticker {
  overflow: hidden;
  width: 100%;
  min-height: 36px;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.top-ticker-track {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  padding: 0.35rem clamp(0.75rem, 3.5vw, 1rem);
}
.top-ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.65rem;
  padding-right: 0;
  white-space: nowrap;
}
.top-ticker-group[aria-hidden="true"] { display: none; }
@media (min-width: 768px) {
  .top-ticker-group { gap: 1rem; }
}
.top-ticker-group a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.top-ticker-group a:hover { color: var(--accent-hover); }
.ticker-sep {
  color: rgba(100, 116, 139, 0.4);
  user-select: none;
  flex-shrink: 0;
}

@keyframes top-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.top-ticker:hover .top-ticker-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .top-ticker-track,
  .trust-bar-track {
    animation: none !important;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0.4rem clamp(0.75rem, 3.5vw, 1rem);
    gap: 0.35rem 0.65rem;
  }
  .top-ticker,
  .trust-bar-scroll {
    -webkit-mask-image: none;
    mask-image: none;
    min-height: auto;
  }
  .top-ticker-group[aria-hidden="true"],
  .trust-bar-set[aria-hidden="true"] {
    display: none;
  }
  .top-ticker-group,
  .trust-bar-set {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    padding-right: 0;
  }
}

.main-nav {
  position: relative;
  border-bottom: 1px solid rgba(226, 232, 240, 0.45);
  background: transparent;
  width: 100%;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 56px;
  min-width: 0;
  width: 100%;
}
@media (min-width: 640px) { .nav-inner { gap: 0.75rem; } }
@media (min-width: 1024px) { .nav-inner { min-height: 64px; } }
.nav-inner > .logo {
  flex: 0 1 auto;
  min-width: 0;
  margin-right: auto;
}
.logo img {
  height: 40px;
  width: auto;
  max-width: min(150px, 44vw);
  object-fit: contain;
}
@media (min-width: 1024px) {
  .logo img { height: 48px; max-width: none; }
  .nav-inner > .logo { margin-right: 0; }
}
@media (max-width: 1023px) {
  .hide-mobile-nav { display: none !important; }
}

.nav-menu { display: none; list-style: none; margin: 0; padding: 0; gap: 0.1rem; }
@media (min-width: 1024px) { .nav-menu { display: flex; align-items: center; } }
.nav-menu a {
  padding: 0.5rem 0.75rem;
  color: var(--foreground);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--accent-hover); }

.has-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-chevron {
  display: none;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.15rem;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .nav-menu.open .nav-chevron {
    display: inline-block;
  }
}

.has-dropdown.is-open .nav-chevron {
  transform: rotate(-135deg);
  margin-top: 0.1rem;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 960px);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 1.5rem;
  margin-top: 0.25rem;
  z-index: 60;
}

@media (min-width: 1024px) {
  .nav-chevron {
    display: inline-block;
  }

  .has-dropdown > .nav-dropdown-trigger {
    cursor: pointer;
  }

  .has-dropdown.is-open > .nav-dropdown-trigger {
    color: var(--accent-hover);
    background: rgba(94, 184, 232, 0.12);
  }

  .has-dropdown .mega-menu {
    display: block;
    left: 0;
    transform: translateY(6px);
    width: min(92vw, 880px);
    margin-top: 0.35rem;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    max-height: min(78vh, 520px);
    transition:
      opacity 0.24s ease,
      transform 0.24s cubic-bezier(0.32, 0.72, 0, 1),
      visibility 0.24s ease;
  }

  .has-dropdown.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mega-menu-inner {
    padding: 1.15rem 1.35rem 1.25rem;
    overflow-y: auto;
    max-height: min(78vh, 520px);
    -webkit-overflow-scrolling: touch;
  }

  .mega-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 0.85rem;
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    background: rgba(94, 184, 232, 0.1);
  }

  .mega-all-link:hover {
    background: rgba(94, 184, 232, 0.18);
  }

  .mega-grid a {
    padding: 0.55rem 0.65rem;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .mega-footer {
    margin-top: 0.85rem;
    padding: 0.85rem 0 0;
  }
}
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.25rem 1.5rem; list-style: none; padding: 0; margin: 0; }
.mega-grid a {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--primary);
}
.mega-grid a:hover { background: var(--secondary); color: var(--accent-hover); }
.mega-grid .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 0.45rem; flex-shrink: 0; }
.mega-all-link {
  display: none;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent-hover);
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.mega-all-link:hover { color: var(--primary); }
.mega-cat-desc {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.75rem;
  margin-top: 0.1rem;
  line-height: 1.35;
}

.mega-footer { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted); }

.nav-end {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  margin-left: auto;
}
@media (min-width: 640px) { .nav-end { gap: 0.35rem; } }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
@media (min-width: 640px) { .nav-actions { gap: 0.35rem; } }
.search-btn {
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 1.05rem;
  text-decoration: none !important;
  line-height: 1;
}
@media (min-width: 640px) {
  .search-btn { padding: 0.4rem 0.55rem; font-size: 1.1rem; }
}
.search-btn:hover { background: var(--secondary); }
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem;
  cursor: pointer;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
@media (max-width: 1023px) {
  .nav-end { order: 2; }
  .nav-inner > .logo { order: 0; }
  .nav-menu { order: 1; }
}
.nav-toggle span { width: 20px; height: 2px; background: var(--primary); }

.nav-menu.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  background: rgba(244, 236, 224, 0.92);
  background-image: url("/assets/images/bg-mandala.jpg");
  background-repeat: repeat;
  background-blend-mode: overlay;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
  padding: 1rem clamp(0.75rem, 3.5vw, 1rem);
  max-height: calc(100dvh - 7rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 90;
}
@media (min-width: 1024px) {
  .nav-menu.open { position: static; flex-direction: row; background: none; border: none; box-shadow: none; padding: 0; max-height: none; overflow: visible; }
}

/* Hero */
.hero-carousel-wrap { padding-top: 1rem; }
@media (min-width: 640px) { .hero-carousel-wrap { padding-top: 1.5rem; } }
.hero-carousel {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--primary);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
@media (min-width: 640px) { .hero-carousel { border-radius: 1rem; } }
.carousel-track {
  position: relative;
  aspect-ratio: 4 / 3;
  max-height: 560px;
  overflow: hidden;
}
@media (min-width: 640px) { .carousel-track { aspect-ratio: 16 / 9; } }
@media (min-width: 1024px) { .carousel-track { aspect-ratio: 21 / 9; } }
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  overflow: hidden;
}
.carousel-slide.active { opacity: 1; z-index: 1; }
.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(253, 252, 250, 0.85);
  backdrop-filter: blur(4px);
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--primary);
}
@media (min-width: 640px) { .carousel-btn { width: 44px; height: 44px; font-size: 1.4rem; } }
.carousel-btn.prev { left: 0.5rem; }
.carousel-btn.next { right: 0.5rem; }
.carousel-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  z-index: 5;
}
.dot {
  height: 6px;
  width: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(253, 252, 250, 0.7);
  padding: 0;
  cursor: pointer;
}
.dot.active { width: 28px; background: var(--accent); }

.hero-intro { text-align: center; padding: 1.5rem 0 0; max-width: 48rem; margin: 0 auto; }
@media (min-width: 1024px) { .hero-intro { padding: 2.5rem 0 0; } }
.hero-intro h1 { font-size: clamp(1.5rem, 4.5vw, 3rem); line-height: 1.15; margin: 0.5rem 0; }
.hero-lead { color: var(--muted); font-size: clamp(0.9rem, 2vw, 1.1rem); margin: 0 0 1.25rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 0; }

.trust-bar {
  border-top: 1px solid rgba(26, 39, 68, 0.1);
  border-bottom: 1px solid rgba(26, 39, 68, 0.1);
}
.trust-bar-scroll {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.trust-bar-track {
  display: flex;
  width: 100%;
  justify-content: center;
}
.trust-bar-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2rem;
}
.trust-bar-set[aria-hidden="true"] { display: none; }
@media (min-width: 1024px) {
  .trust-bar-scroll {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .trust-bar-track {
    gap: 2rem;
  }
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 640px) { .trust-item { font-size: 0.875rem; } }
.trust-item::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

/* Category bento */
.section-categories, .section-featured, .section-about, .section-partner, .section-contact-trio {
  padding: 4rem 0;
  position: relative;
}
.section-inner { position: relative; z-index: 1; }
.section-featured { background: var(--secondary); }

.category-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  grid-auto-rows: 180px;
}
@media (min-width: 768px) {
  .category-bento { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
}
@media (min-width: 1024px) {
  .category-bento { grid-template-columns: repeat(4, 1fr); }
}

.cat-card {
  position: relative;
  display: block;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
  text-decoration: none !important;
  color: #fff;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.cat-card.bento-large { grid-column: span 2; grid-row: span 2; }
.cat-card.bento-wide { grid-column: span 2; }

/* Tablet/mobile: uniform 2-column grid like featured products */
@media (max-width: 1023px) {
  .category-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    grid-auto-rows: auto;
  }
  .cat-card.bento-large,
  .cat-card.bento-wide,
  .cat-card {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1;
    min-height: 0;
  }
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-accent); border-color: rgba(94, 184, 232, 0.5); }
.cat-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.cat-card:hover .cat-img { transform: scale(1.08); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.95) 0%, rgba(26, 39, 68, 0.55) 50%, rgba(26, 39, 68, 0.1) 100%);
  transition: opacity 0.5s;
}
.cat-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  background: rgba(253, 252, 250, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}
.cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1rem 1.15rem;
}
@media (min-width: 768px) {
  .cat-content { padding: 1.25rem 1.35rem; }
  .cat-card:not(.bento-large) .cat-content { opacity: 0.95; }
}
.cat-content h3 { margin: 0 0 0.2rem; font-size: 1rem; color: #fff; }
@media (min-width: 768px) { .cat-content h3 { font-size: 1.1rem; } }
.cat-content p { margin: 0; font-size: 0.75rem; opacity: 0.85; line-height: 1.4; color: #fff; }
.cat-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0;
  transform: translateY(4px);
  transition: 0.3s;
}
@media (min-width: 768px) {
  .cat-card:hover .cat-link { opacity: 1; transform: translateY(0); }
}
.shine::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s;
  pointer-events: none;
  z-index: 4;
}
.shine:hover::after { left: 125%; }

/* Products */
.card-product {
  display: block;
  background: var(--card);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card-product:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-product-img { aspect-ratio: 1; overflow: hidden; background: var(--secondary); }
.card-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card-product:hover .card-product-img img { transform: scale(1.05); }
.card-product-body { padding: 1rem; }
.product-cat { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; color: var(--accent-hover); }
.card-product h3 { font-size: 0.9rem; margin: 0.2rem 0; line-height: 1.3; }
.sku { font-size: 0.75rem; color: var(--muted); margin: 0.15rem 0 0.5rem; }
.card-product .desc { font-size: 0.8rem; color: var(--muted); margin: 0 0 0.5rem; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-link { font-size: 0.75rem; font-weight: 600; color: var(--accent-hover); }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

/* Products shop — Flipkart-style category strip */
.page-hero-compact { padding-bottom: 0.5rem; }
.products-hero-sub { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.95rem; }
.products-shop-section { padding-top: 0.75rem; }
.category-strip-wrap {
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.category-strip-label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.category-strip {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.15rem 0 0.65rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.category-strip::-webkit-scrollbar { height: 4px; }
.category-strip::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
.category-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.category-chip:hover {
  border-color: var(--accent);
  background: #fff;
}
.category-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-accent);
}
.category-chip-count {
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.75;
  padding: 0.1rem 0.4rem;
  background: rgba(26, 39, 68, 0.08);
  border-radius: 999px;
}
.category-chip.is-active .category-chip-count {
  background: rgba(255, 255, 255, 0.35);
}
.products-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin-bottom: 1rem;
}
.products-active-title {
  margin: 0;
  font-size: 1.15rem;
  font-family: var(--font-display, inherit);
}
.products-result-count { margin: 0; font-size: 0.85rem; }
.products-empty {
  text-align: center;
  padding: 2.5rem 1rem;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 2px solid #25d366;
  background: #25d366;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none !important;
  transition: filter 0.2s, transform 0.2s;
}
.btn-whatsapp:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  color: #fff !important;
}
.product-share-hint {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
}
.product-detail-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--secondary);
}

/* About */
.about-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow-hover); width: 100%; }
.about-text { color: var(--muted); line-height: 1.7; margin: 1rem 0 1.5rem; }
.features-grid { display: grid; gap: 1rem; margin: 1.5rem 0; }
@media (min-width: 640px) { .features-grid { grid-template-columns: 1fr 1fr; } }
.feature-box { display: flex; gap: 0.75rem; align-items: flex-start; }
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(94, 184, 232, 0.12);
  color: var(--accent-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-box strong { display: block; font-size: 0.9rem; color: var(--primary); }
.feature-box p { margin: 0.15rem 0 0; font-size: 0.8rem; color: var(--muted); }

.section-partner { text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.contact-trio { display: grid; gap: 1rem; }
@media (min-width: 768px) { .contact-trio { grid-template-columns: repeat(3, 1fr); } }
.trio-card {
  display: block;
  padding: 1.5rem;
  text-align: center;
  background: var(--card);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.2s;
}
.trio-card:hover { border-color: var(--accent); }
.trio-main { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin: 0.35rem 0; }
.trio-sub { font-size: 0.75rem; color: var(--muted); margin: 0; }

/* Footer — repo Footer.tsx */
.site-footer {
  margin-top: 4rem;
  background: transparent;
  color: var(--primary);
  border-top: 1px solid rgba(26, 39, 68, 0.12);
}
.footer-cta-strip { border-bottom: 1px solid rgba(26, 39, 68, 0.1); padding: 1.5rem 0; }
.footer-cta-row { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
@media (min-width: 768px) {
  .footer-cta-row { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-cta-row h2 { font-size: 1.1rem; margin: 0; }
.footer-cta-row p { margin: 0.25rem 0 0; font-size: 0.85rem; color: var(--muted); }
.footer-cta-actions { display: flex; gap: 0.5rem; width: 100%; }
@media (min-width: 768px) { .footer-cta-actions { width: auto; } }
.footer-cta-actions .btn-outline { flex: 1; }
@media (min-width: 768px) { .footer-cta-actions .btn-outline { flex: none; } }

.footer-brand-block { padding: 2rem 0; }
.footer-brand-row { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .footer-brand-row { flex-direction: row; justify-content: space-between; } }
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  background: var(--primary-fg);
  border-radius: 8px;
}
.footer-logo-wrap img { height: 36px; }
.footer-about { max-width: 28rem; font-size: 0.9rem; color: var(--muted); margin-top: 1rem; line-height: 1.6; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(26, 39, 68, 0.1);
  align-items: start;
}
@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
.site-footer h4 { font-size: 0.9rem; margin: 0 0 0.75rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.35rem; }
.site-footer a { color: var(--muted); font-size: 0.875rem; text-decoration: none; }
.site-footer a:hover { color: var(--accent-hover); }

/* Address & contact lines — one font everywhere (footer, contact page, etc.) */
.site-address-text {
  font-family: var(--font-sans) !important;
  font-size: 0.875rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.55;
  letter-spacing: normal;
  color: var(--muted);
}
.site-footer .contact-list li,
.site-footer .contact-list .site-address-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}
.contact-card-static .site-address-text {
  display: block;
  margin-top: 0.35rem;
  color: var(--foreground);
  font-size: 0.9rem;
}
.newsletter-row { display: flex; gap: 0.5rem; margin-top: 0.5rem; flex-wrap: wrap; }
.newsletter-row input {
  flex: 1;
  min-width: 140px;
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
}
.social-links { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.75rem; font-size: 0.85rem; }

.footer-bottom {
  border-top: 1px solid rgba(26, 39, 68, 0.1);
  padding: 1rem 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; }
.footer-legal a { margin-left: 0.75rem; color: var(--muted); }
@media (max-width: 600px) {
  .footer-legal { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .footer-legal a { margin-left: 0; }
}

/* Pages */
.page-hero { padding: 2.5rem 0 1rem; }
.page-hero h1 { margin: 0; font-size: clamp(1.75rem, 4vw, 2.5rem); }
.form-card {
  background: var(--card);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.form-card label { display: block; margin-bottom: 1rem; font-weight: 500; font-size: 0.9rem; }
.form-card input, .form-card textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-card {
  display: block;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  text-decoration: none !important;
  color: inherit;
}

.card-grid, .blog-grid, .video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.info-card, .blog-card, .video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.info-card img, .blog-card img, .video-card img { height: 180px; width: 100%; object-fit: cover; }

/* —— Blog —— */
.blog-page-hero .blog-hero-lead,
.blog-list-sub {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 36rem;
}
.blog-list-section { padding-top: 0.5rem; }
.blog-list-header {
  margin-bottom: 1.5rem;
}
.blog-list-header .section-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}
.blog-empty {
  text-align: center;
  padding: 2.5rem 1rem;
}
.blog-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
}
.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--secondary);
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}
.blog-card-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}
.blog-card-date {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-hover);
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: var(--primary);
}
.blog-card-excerpt {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card-cta {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-hover);
  margin-top: 0.35rem;
}
.blog-back-link {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-hover);
  text-decoration: none;
}
.blog-back-link:hover { color: var(--primary); }
.blog-article-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0.25rem 0 0.5rem;
  max-width: 48rem;
}
.blog-article-date {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.blog-article-layout {
  max-width: 52rem;
  margin: 0 auto;
}
.blog-article-figure {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.blog-article-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: cover;
}
.blog-prose {
  font-family: var(--font-sans);
}
.blog-prose h2,
.blog-prose h3 {
  font-family: var(--font-display);
  margin-top: 1.5rem;
}
.blog-prose p,
.blog-prose li {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
}
.download-list { list-style: none; padding: 0; }
.download-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
/* Videos — embedded YouTube (16:9) */
.section-videos { padding-top: 0.5rem; }
.video-card {
  display: flex;
  flex-direction: column;
}
.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #0f172a;
  overflow: hidden;
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-embed-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.85);
}
.video-embed-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  position: absolute;
  inset: 0;
}
.video-fallback-link {
  position: relative;
  z-index: 1;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
}
.video-card-body {
  padding: 1rem 1.1rem 1.15rem;
}
.video-card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}
.video-card-body p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.video-yt-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-hover);
  text-decoration: none;
}
.video-yt-link:hover { text-decoration: underline; }
.video-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
}

/* Site modals (Get Quote, etc.) */
.site-modal[hidden] { display: none !important; }
.site-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  overscroll-behavior: contain;
}
.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.site-modal-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(92dvh, 720px);
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px -12px rgba(26, 39, 68, 0.35);
  animation: site-modal-in 0.28s ease;
  overflow: hidden;
}
@keyframes site-modal-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.site-modal-handle {
  display: none;
}
.site-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--card);
}
.site-modal-header-text {
  min-width: 0;
  flex: 1;
}
.site-modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-family: var(--font-display, inherit);
}
.site-modal-sub {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}
.site-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.65rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--primary);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.site-modal-close-icon {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}
.site-modal-close-label {
  display: none;
}
.site-modal-close:hover,
.site-modal-close:focus-visible {
  border-color: var(--accent);
  color: var(--accent-hover);
  outline: none;
  background: rgba(94, 184, 232, 0.08);
}
.site-modal-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 1.25rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.site-modal-body .form-card {
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
}
.site-modal-footer {
  display: none;
  flex-shrink: 0;
  padding: 0.75rem 1.25rem max(1rem, env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--card);
}
.site-modal-footer-close {
  min-height: 44px;
}
.quote-form-compact label { margin-bottom: 0.85rem; }
.quote-page-wrap { max-width: 640px; }
.btn-block { width: 100%; }

.nav-quote-desktop {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-quote-mobile { display: none; }
.nav-quote-btn {
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.75rem;
  border: none;
  border-radius: 8px;
  background: rgba(94, 184, 232, 0.2);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
}
.nav-quote-btn:hover { background: rgba(94, 184, 232, 0.35); }
html.quote-modal-open,
body.quote-modal-open {
  overflow: hidden;
  touch-action: none;
}
.product-detail-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .product-detail-grid { grid-template-columns: 1fr 1fr; } }
.product-detail-img { border-radius: var(--radius); box-shadow: var(--shadow-hover); }
.breadcrumb { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }
.prose { max-width: 48rem; line-height: 1.7; }
.prose img,
.prose video,
.prose iframe,
.prose embed {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.prose table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.prose pre {
  overflow-x: auto;
  max-width: 100%;
  font-size: 0.85em;
}

/* Utilities */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.text-center { text-align: center; }
.muted { color: var(--muted); }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin: 0 0 0.35rem;
}
.lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.info-card-body {
  padding: 1rem 1.15rem 1.15rem;
}
.info-card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}
.info-card-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.trust-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
}
.trust-badges li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}
.trust-badges-form {
  margin-top: 2rem;
}

.dealer-hero {
  padding-bottom: 0.5rem;
}
.dealer-hero .container {
  max-width: 40rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}

.product-detail-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--secondary);
}
.product-detail-media img {
  width: 100%;
  display: block;
}

.page-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted);
}
.page-empty .btn {
  margin-top: 1rem;
}

.carousel-dots .dot {
  min-width: 28px;
  min-height: 28px;
  padding: 11px 14px;
  box-sizing: content-box;
  background-clip: content-box;
}
.carousel-dots .dot.active {
  min-width: 44px;
}

.flash { padding: 1rem; text-align: center; font-weight: 500; z-index: 200; position: relative; }
.flash-success { background: #dcfce7; color: #166534; }
.flash-error { background: #fee2e2; color: #991b1b; }
.search-form { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-intro { animation: fade-up 0.6s ease-out both; }
