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


body { background: var(--navy); color: var(--white); min-height: 100vh; }

a { text-decoration: none; color: inherit; }

/* -- TOP BAR ----------------------------------- */
.topbar {
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.topbar-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: flex; align-items: center;
  height: 60px; gap: 1rem; padding: 0 1.5rem;
}

.logo {
  display: flex; align-items: center; gap: 9px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; color: #fff; letter-spacing: -0.5px;
}
.logo-name {
  font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--white);
}
.logo-name span { color: var(--cyan); }

.search-wrap {
  flex: 1; max-width: 680px; position: relative;
}
.search-wrap input {
  width: 100%; height: 42px;
  background: var(--navy3); border: 1.5px solid var(--border);
  border-radius: 10px; color: var(--white);
  font-size: 0.875rem;
  padding: 0 3rem 0 1rem; outline: none;
  transition: border-color 0.2s;
}
.search-wrap input::placeholder { color: var(--muted); }
.search-wrap input:focus { border-color: var(--blue); }
.search-icon {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 1rem; pointer-events: none;
}

.topbar-actions { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }

.btn-book {
  background: var(--blue); color: #fff;
  padding: 0.5rem 1.1rem; border-radius: 9px;
  font-size: 0.82rem; font-weight: 600; white-space: nowrap;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-book:hover { background: var(--blue-h); transform: translateY(-1px); }

.icon-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--navy3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: border-color 0.2s;
}
.icon-btn:hover { border-color: rgba(255,255,255,0.2); }

.account-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 0.4rem 0.75rem; border-radius: 8px;
  background: var(--navy3); border: 1px solid var(--border);
  font-size: 0.8rem; font-weight: 500; cursor: pointer;
  transition: border-color 0.2s; white-space: nowrap;
}
.account-btn:hover { border-color: rgba(255,255,255,0.2); }
.account-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
}

/* -- CATEGORY NAV ------------------------------ */
.cat-nav {
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
}
.cat-nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none; padding: 0 1.5rem;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-item {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 0.7rem 1.2rem; cursor: pointer; flex-shrink: 0;
  border-bottom: 2.5px solid transparent;
  transition: all 0.2s;
}
.cat-item:hover, .cat-item.active { border-bottom-color: var(--blue); }
.cat-item:hover .cat-icon, .cat-item.active .cat-icon { color: var(--cyan); }
.cat-item:hover .cat-label, .cat-item.active .cat-label { color: var(--white); }
.cat-icon { font-size: 1.3rem; }
.cat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.86);
  white-space: nowrap;
}

/* Consistent readable nav/interface typography across the site */
.cat-item,
.cat-label,
.icon-btn,
.account-btn,
.site-nav a,
.topbar .btn-book,
.sec-link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
}

/* -- MAIN CONTENT ------------------------------ */
.main { max-width: 1280px; margin: 0 auto; padding: 1.5rem 1.5rem 3rem; }

/* -- HERO BANNER ------------------------------- */
.hero-banner {
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(120deg, #0c1060 0%, #1a0840 45%, #04102a 100%);
  border: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr auto;
  align-items: center;
  padding: 2.5rem 3rem;
  position: relative;
  margin-bottom: 1.5rem;
  min-height: 200px;
}
/* subtle grid overlay */
.hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,91,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,91,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,194,232,0.12); border: 1px solid rgba(0,194,232,0.25);
  color: var(--cyan); border-radius: 99px; padding: 4px 12px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 1rem; width: fit-content;
}
.hero-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}
.hero-title .hl {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { color: var(--muted); font-size: 0.9rem; line-height: 1.6; max-width: 480px; margin-bottom: 1.5rem; }
.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-hero-p {
  background: var(--blue); color: #fff;
  padding: 0.65rem 1.5rem; border-radius: 10px;
  font-size: 0.875rem; font-weight: 600;
  transition: all 0.2s; border: none; cursor: pointer;
}
.btn-hero-p:hover { background: var(--blue-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,91,255,0.4); }
.btn-hero-s {
  background: transparent; color: var(--offwhite);
  padding: 0.65rem 1.5rem; border-radius: 10px;
  font-size: 0.875rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s; cursor: pointer;
}
.btn-hero-s:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }

.hero-stats {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: flex-end; position: relative; z-index: 1;
}
.hero-stat-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 0.7rem 1.1rem;
  text-align: center; min-width: 120px;
  backdrop-filter: blur(10px);
}
.hsp-val { font-size: 1.4rem; font-weight: 800; color: var(--white); }
.hsp-val.c { color: var(--cyan); }
.hsp-val.p { color: #b99dff; }
.hsp-lab { font-size: 0.68rem; color: var(--muted); margin-top: 2px; }

/* -- PROMO STRIP ------------------------------- */
.promo-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-bottom: 2rem;
}
.promo-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  padding: 1.25rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  cursor: pointer; transition: all 0.25s;
  position: relative;
}
.promo-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.18); }
.promo-card.pc1 { background: linear-gradient(135deg, #0c1860 0%, #070e35 100%); }
.promo-card.pc2 { background: linear-gradient(135deg, #1a0640 0%, #0a0520 100%); }
.promo-card.pc3 { background: linear-gradient(135deg, #041830 0%, #020d1c 100%); }
.promo-card:hover .pc-arrow { transform: translateX(4px); }
.pc-icon {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.pc1 .pc-icon { background: rgba(46,91,255,0.15); }
.pc2 .pc-icon { background: rgba(107,63,255,0.15); }
.pc3 .pc-icon { background: rgba(0,194,232,0.12); }
.pc-body { flex: 1; }
.pc-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
.pc-sub { font-size: 0.75rem; color: var(--muted); line-height: 1.4; }
.pc-arrow { font-size: 0.8rem; color: var(--muted); transition: transform 0.2s; margin-left: auto; }

/* -- SECTION HEADER ---------------------------- */
.sec-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.sec-title { font-size: 1.05rem; font-weight: 700; }
.sec-link { font-size: 0.8rem; color: var(--cyan); }
.sec-link:hover { text-decoration: underline; }

/* -- SERVICE TILES ----------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.svc-tile {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.1rem 0.75rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
  cursor: pointer; text-align: center;
  transition: all 0.2s;
}
.svc-tile:hover {
  border-color: rgba(46,91,255,0.4);
  background: rgba(46,91,255,0.07);
  transform: translateY(-3px);
}
.svc-tile-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.ic-b { background: rgba(46,91,255,0.12); }
.ic-p { background: rgba(107,63,255,0.12); }
.ic-c { background: rgba(0,194,232,0.1); }
.ic-r { background: rgba(240,56,122,0.1); }
.ic-g { background: rgba(14,184,127,0.1); }
.ic-a { background: rgba(245,166,35,0.1); }
.svc-tile-name { font-size: 0.72rem; font-weight: 600; line-height: 1.3; color: var(--white); }
.svc-tile-price { font-size: 0.65rem; color: var(--cyan); font-weight: 500; }

/* -- PRODUCT GRID ------------------------------ */
.product-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem; margin-bottom: 2rem;
}
.prod-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; cursor: pointer;
  transition: all 0.25s; display: block; text-decoration: none; color: inherit;
}
.prod-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.prod-img {
  aspect-ratio: 1; background: var(--navy3);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  padding: 12px 10px 6px;
}
.prod-img svg { width: 100%; height: 100%; display: block; }
.prod-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.prod-badge {
  position: absolute; top: 8px; left: 8px;
  padding: 3px 8px; border-radius: 6px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.03em;
}
.badge-green { background: rgba(14,184,127,0.15); color: #0eb87f; border: 1px solid rgba(14,184,127,0.25); }
.badge-blue  { background: rgba(46,91,255,0.15); color: #7fa8ff; border: 1px solid rgba(46,91,255,0.25); }
.badge-amber { background: rgba(245,166,35,0.15); color: #f5a623; border: 1px solid rgba(245,166,35,0.25); }
.prod-body { padding: 0.85rem; }
.prod-name { font-size: 0.8rem; font-weight: 600; margin-bottom: 3px; line-height: 1.3; color: var(--white); }
.prod-spec { font-size: 0.7rem; color: var(--muted); margin-bottom: 0.6rem; }
.prod-price-row { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-size: 1.05rem; font-weight: 800; color: var(--white); }
.prod-was { font-size: 0.7rem; color: var(--muted); text-decoration: line-through; }
.prod-add {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--blue); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; font-weight: 700;
  transition: all 0.2s; flex-shrink: 0;
}
.prod-add:hover { background: var(--blue-h); transform: scale(1.1); }

/* -- TRUST BAR --------------------------------- */
.trust-bar {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.25rem 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-bottom: 2rem;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-ico {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  background: rgba(46,91,255,0.1);
}
.trust-title { font-size: 0.82rem; font-weight: 600; color: var(--white); }
.trust-sub { font-size: 0.7rem; color: var(--muted); }

/* -- HOW IT WORKS ------------------------------ */
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem;
}
.how-step {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.25rem;
  position: relative; overflow: hidden;
}
.how-step::before {
  content: attr(data-n);
  position: absolute; right: -4px; top: -8px;
  font-size: 5rem; font-weight: 900; color: rgba(255,255,255,0.02);
  line-height: 1; pointer-events: none;
}
.how-ico { font-size: 1.6rem; margin-bottom: 0.7rem; }
.how-title { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; color: var(--white); }
.how-desc { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }
.step-num {
  display: inline-block; width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 0.65rem; font-weight: 700; text-align: center; line-height: 20px;
  margin-bottom: 0.75rem;
}

/* -- FOOTER BAR -------------------------------- */
.footer-bar {
  background: var(--navy2); border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-logo { font-size: 0.9rem; font-weight: 700; color: var(--muted); }
.footer-logo span { color: var(--cyan); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; color: var(--muted); }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.72rem; color: var(--muted); }

/* Global alignment and consistency pass */

.container,
.section-inner,
.page-container,
.content-wrap {
  width: min(100%, var(--site-container));
  max-width: var(--site-container);
  margin-inline: auto;
  padding-inline: var(--site-gutter);
}

.topbar {
  height: 64px;
  padding: 0;
}

.topbar-inner,
.cat-nav-inner {
  width: min(100%, var(--site-container));
  max-width: var(--site-container);
  margin-inline: auto;
  padding-inline: var(--site-gutter);
}

.topbar-inner {
  height: 64px;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.cat-nav {
  padding: 0;
}

.cat-nav-inner {
  justify-content: flex-start;
}

.logo-link,
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.logo-link:hover,
.footer-brand-link:hover {
  text-decoration: none;
}

.logo--mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 40px;
}

.logo-text {
  font-size: 1.08rem;
  line-height: 1;
}

.footer-brand-link {
  margin-bottom: 0.55rem;
  color: var(--white) !important;
}

.footer-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin: 0;
  flex: 0 0 34px;
}

.search-wrap {
  min-width: 220px;
}

.topbar-actions {
  gap: 0.45rem;
}

.icon-btn {
  width: auto;
  min-width: 38px;
  padding-inline: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--offwhite);
}

.btn-book,
.account-btn,
.icon-btn,
.btn-hero-p,
.btn-hero-s {
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.footer-bar {
  padding: 1.6rem max(var(--site-gutter), calc((100vw - var(--site-container)) / 2 + var(--site-gutter)));
  align-items: flex-start;
  gap: 1.5rem;
}

.footer-info {
  gap: 0.3rem;
  max-width: 420px;
}

.footer-links {
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
  max-width: 560px;
}

.page-home .site-main {
  padding-block: 0;
}

.page-home .main {
  width: min(100%, var(--site-container));
  max-width: var(--site-container);
  margin-inline: auto;
  padding: clamp(1.25rem, 2.4vw, 2rem) var(--site-gutter) clamp(3rem, 5vw, 4.5rem);
  display: grid;
  gap: clamp(2.25rem, 4.5vw, 3.5rem);
}

.home-premium-hero,
.home-action-section,
.home-repair-categories,
.home-brand-support,
.home-local-trust,
.page-home .home-final-cta {
  width: 100%;
  margin-inline: auto;
}

.home-premium-hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  min-height: clamp(420px, 48vw, 520px);
  padding: clamp(2.4rem, 5vw, 4.75rem);
}

.home-premium-hero__content {
  max-width: 740px;
}

.home-premium-hero__title {
  max-width: 780px;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 1.02;
}

.home-premium-hero__copy {
  max-width: 610px;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.58;
}

.home-premium-hero__actions,
.home-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-premium-hero__panel {
  width: 100%;
  max-width: 360px;
  justify-self: end;
}

.home-hero-device-card {
  min-height: 160px;
}

.home-action-section,
.home-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
}

.home-local-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
}

.home-action-card,
.home-brand-card,
.home-trust-item,
.category-card {
  height: 100%;
}

.home-action-card {
  min-height: 215px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-action-card p {
  margin: 0;
  max-width: 21rem;
}

.page-home .home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
}

.page-home .home-section-head > div,
.home-section-heading {
  min-width: 0;
}

.page-home .sec-title,
.home-section-heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.page-home .home-section-sub,
.home-section-heading p {
  margin-top: 0.45rem;
  max-width: 560px;
  font-size: 0.94rem;
  line-height: 1.55;
}

.page-home .home-service-grid.category-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
  margin: 0;
}

.category-card__media,
.category-service-card__media {
  aspect-ratio: 16 / 10;
}

.category-card__image,
.category-service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-brand-card {
  display: flex;
  flex-direction: column;
}

.home-brand-card ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}

.home-trust-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-home .home-final-cta {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.home-final-cta-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
}

.home-final-cta-actions {
  justify-content: flex-end;
}

@media (max-width: 1020px) {
  .home-premium-hero,
  .home-action-section,
  .home-brand-grid {
    grid-template-columns: 1fr;
  }

  .home-premium-hero__panel {
    max-width: none;
    justify-self: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-local-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar {
    height: auto;
  }

  .topbar-inner {
    min-height: 64px;
    flex-wrap: wrap;
    padding-block: 0.7rem;
  }

  .search-wrap {
    order: 3;
    flex-basis: 100%;
    max-width: none;
  }

  .topbar-actions {
    margin-left: auto;
  }

  .home-premium-hero__panel,
  .home-local-trust {
    grid-template-columns: 1fr;
  }

  .home-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .home-final-cta-actions {
    justify-content: flex-start;
  }

  .footer-bar {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .logo-text {
    font-size: 1rem;
  }

  .btn-book {
    display: none;
  }

  .page-home .main {
    gap: 1.75rem;
  }

  .home-premium-hero {
    padding: 1.55rem;
    min-height: 0;
  }

  .home-premium-hero__actions a,
  .home-final-cta-actions a {
    width: 100%;
  }

  .page-home .home-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-brand-card ul {
    grid-template-columns: 1fr;
  }
}

/* -- CHAT -------------------------------------- */
.chat-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border: none; cursor: pointer; font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(46,91,255,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.chat-fab:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(46,91,255,0.55); }

@media(max-width:900px){
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .service-grid { grid-template-columns: repeat(3,1fr); }
  .promo-strip  { grid-template-columns: 1fr; }
  .how-grid     { grid-template-columns: repeat(2,1fr); }
  .trust-bar    { grid-template-columns: repeat(2,1fr); }
  .hero-stats   { display: none; }
}
@media(max-width:600px){
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .topbar .account-btn { display: none; }
}

/* -- TEK CENTRE BRAND STRIP ----------------------------------- */
.tc-brand-strip {
  background: linear-gradient(135deg, var(--navy3) 0%, #1a0840 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.tc-brand-logo {
  font-size: 2rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--muted); white-space: nowrap; flex-shrink: 0;
}
.tc-brand-logo span { color: var(--cyan); }
.tc-brand-tagline {
  flex: 1; font-size: 0.875rem; color: var(--muted); line-height: 1.6;
  min-width: 200px; margin: 0;
}
.tc-brand-actions {
  display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap;
}

/* -- SHOP PAGE - font & colour fixes -------------------------------------
   app.css carries legacy white-background shop styles.
   These rules override those with the dark navy theme.               -- */

/* Filters sidebar */
.filters-sidebar {
  background: var(--card-bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 14px;
  overflow: hidden;
}
.filters-sidebar__header {
  background: var(--navy3) !important;
  color: var(--white) !important;
  border-bottom: 1px solid var(--border);
}
.filter-clear-link { color: var(--cyan) !important; opacity: 1 !important; }
.filters-sidebar__section { border-top: 1px solid var(--border) !important; }
.filters-sidebar__section-title { color: var(--muted) !important; }
.filters-sidebar__item { color: var(--white); }
.filters-sidebar__item label { color: var(--white) !important; }
.filters-sidebar__item--active label { color: var(--cyan) !important; font-weight: 600; }
.filters-sidebar__count { color: var(--muted) !important; }

/* Shop product cards (shop.php uses .product-card, not .prod-card) */
.product-card {
  background: var(--card-bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 14px !important;
}
.product-card:hover {
  border-color: rgba(255,255,255,0.2) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important;
  transform: translateY(-3px);
}
.product-card__img-wrap {
  background: var(--navy3) !important;
}
.product-card__name { color: var(--white) !important; }
.product-card__sku  { color: var(--muted) !important; }
.product-card__price { color: var(--cyan) !important; }
.product-card__price-was { color: var(--muted) !important; }
.product-card__stock--in  { color: var(--tag-green) !important; }
.product-card__stock--out { color: var(--pink) !important; }
.btn-add-to-cart { background: var(--blue) !important; border-radius: 9px !important; }
.btn-add-to-cart:hover { background: var(--blue-h) !important; }
.btn-add-to-cart--disabled,
.btn-add-to-cart:disabled {
  background: rgba(255,255,255,0.08) !important;
  color: var(--muted) !important;
}

/* Category pill bar */
.shop-cat-bar { background: var(--navy2) !important; }
.category-pill { color: rgba(255,255,255,0.75) !important; }
.category-pill--active { color: #fff !important; background: var(--blue) !important; border-color: var(--blue) !important; }

/* Active filter chips */
.active-filter-chip {
  background: rgba(46,91,255,0.1) !important;
  border: 1px solid rgba(46,91,255,0.3) !important;
  color: #7fa8ff !important;
  border-radius: 20px !important;
}
.active-filter-chip:hover {
  background: rgba(46,91,255,0.22) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
}
.active-filter-chip--clear {
  background: rgba(240,56,122,0.1) !important;
  border-color: rgba(240,56,122,0.3) !important;
  color: #f0387a !important;
}
.active-filter-chip--clear:hover {
  background: rgba(240,56,122,0.2) !important;
  border-color: var(--pink) !important;
  color: #fff !important;
}
.active-filters__label { color: var(--muted) !important; }

/* Search bar */
.shop-search {
  background: var(--navy3) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
}
.shop-search:focus-within { border-color: var(--blue) !important; }
.shop-search__input {
  background: transparent !important;
  color: var(--white) !important;
}
.shop-search__input::placeholder { color: var(--muted) !important; }
.shop-search__btn { background: var(--blue) !important; border-radius: 0 8px 8px 0 !important; }

/* Sort dropdown */
.shop-sort { color: var(--white); }
.shop-sort label { color: var(--muted); }
.shop-sort select {
  background: var(--navy3) !important;
  color: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
}

/* Search autocomplete */
.search-suggest {
  background: var(--card-bg) !important;
  border: 1px solid var(--border) !important;
}
.search-suggest__item { color: var(--white) !important; }
.search-suggest__item:hover,
.search-suggest__item--active { background: var(--navy3) !important; }

/* Shop hero */
.shop-hero__title { color: #fff !important; -webkit-text-fill-color: #fff !important; }
.shop-hero__sub   { color: rgba(255,255,255,0.8) !important; }

/* Shop count */
.shop-count { color: var(--muted) !important; }
.shop-count strong { color: var(--white) !important; }

/* Logo rendering fixes */

.logo-link {
  min-width: max-content;
}

.logo-link .logo--mark {
  width: 40px !important;
  height: 40px !important;
  flex: 0 0 40px !important;
  object-fit: contain !important;
  border-radius: 10px;
}

.footer-brand-link .footer-logo {
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px !important;
  object-fit: contain !important;
}

.logo-text,
.footer-brand-link span {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
input[type="datetime-local"],
input[type="search"],
input[type="number"],
select,
textarea {
  min-height: 44px;
  color: var(--white) !important;
  background: var(--navy3) !important;
  border-color: rgba(255,255,255,0.16) !important;
  color-scheme: dark;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.5);
  opacity: 0.9;
  cursor: pointer;
}

label,
.form-label,
.form-hint,
.help-text {
  color: var(--offwhite);
}

.form-hint,
.help-text,
.muted-text {
  color: var(--muted) !important;
}
