/* ============================================================
   EASTERN APPLIANCES — COMPONENTS.CSS
   Topbar · Header · Catbar · Trust Strip · Cards · Footer
   Search Overlay · Drawer · Modal · Forms · Responsive
   ============================================================ */

/* ── TOPBAR ── */
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 0.45rem 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 1.5rem; }
.topbar a {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.15s;
}
.topbar a:hover { color: var(--white); }
.topbar-icon { width: 14px; height: 14px; opacity: 0.7; flex-shrink: 0; }
.topbar-hours { color: rgba(255,255,255,0.55); font-size: 0.78rem; }

/* ── SITE HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--navy-100);
  box-shadow: 0 2px 12px rgba(15,32,64,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 68px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.drawer-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  border-bottom: none;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy-900);
  background: var(--navy-50);
  border-color: transparent;
}
.nav-links a.nav-cta {
  background: var(--navy-900);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 100px;
}
.nav-links a.nav-cta:hover { background: var(--navy-700); }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }

.btn-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.15s;
  background: none;
  border: none;
  cursor: pointer;
}
.btn-icon:hover { background: var(--navy-50); color: var(--navy-900); }
.btn-icon svg { width: 18px; height: 18px; }

/* Hamburger */
.btn-hamburger {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
}
.btn-hamburger:hover { background: var(--navy-50); }
.btn-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── CATEGORY BAR ── */
.catbar {
  background: var(--navy-900);
  overflow-x: auto;
  scrollbar-width: none;
}
.catbar::-webkit-scrollbar { display: none; }
.catbar-inner {
  display: flex;
  align-items: center;
  height: 40px;
  width: max-content;
  min-width: 100%;
}
.catbar a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.1rem;
  height: 100%;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: all 0.15s;
  white-space: nowrap;
}
.catbar a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.catbar a.featured { color: #FFCB80; font-weight: 600; }
.catbar-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--warm-100);
  border-bottom: 1px solid var(--warm-200);
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-strip::-webkit-scrollbar { display: none; }
.trust-inner {
  display: flex;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  height: 56px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.75rem;
  border-right: 1px solid var(--warm-200);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--navy-800);
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item-icon {
  width: 26px; height: 26px;
  background: var(--navy-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg { width: 13px; height: 13px; color: var(--navy-700); }

/* ── WHY CARDS ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-grid .why-card:nth-child(4):last-child {
  grid-column: 2 / 3;
}
@media (max-width: 900px) {
  .why-grid .why-card:nth-child(4):last-child {
    grid-column: auto;
  }
}
.why-card {
  background: var(--white);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--navy-900);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--navy-50);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.why-icon svg { width: 26px; height: 26px; color: var(--navy-700); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CATEGORY GRID ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.2s;
  cursor: pointer;
}
.category-card:hover {
  border-color: var(--navy-400);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.cat-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.cat-icon svg { width: 28px; height: 28px; }
.cat-icon.navy   { background: var(--navy-50); }
.cat-icon.navy svg { color: var(--navy-700); }
.cat-icon.teal   { background: #E4F3EF; }
.cat-icon.teal svg { color: var(--accent-teal); }
.cat-icon.orange { background: var(--accent-orange-light); }
.cat-icon.orange svg { color: var(--accent-orange); }
.cat-text h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.2rem;
}
.cat-text p { font-size: 0.78rem; color: var(--text-muted); }
.cat-arrow {
  margin-left: auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy-50);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.category-card:hover .cat-arrow { background: var(--navy-900); }
.cat-arrow svg { width: 13px; height: 13px; color: var(--navy-600); transition: color 0.15s; }
.category-card:hover .cat-arrow svg { color: var(--white); }

/* ── PRODUCT CARDS ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-img,
.product-img-wrap {
  background: var(--warm-50);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--navy-50);
  position: relative;
  overflow: hidden;
}
.product-img svg { width: 60px; height: 60px; color: var(--navy-200); }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.product-img-placeholder svg { width: 60px; height: 60px; color: var(--navy-200); }
.product-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--accent-orange);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.product-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-brand {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.product-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }
.product-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--navy-50);
  border-bottom: 1px solid var(--navy-50);
}
.product-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.product-detail strong {
  color: var(--navy-900);
  font-weight: 600;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-cta {
  width: 100%;
  background: var(--navy-900);
  color: var(--white);
  border: 2px solid var(--navy-900);
  border-radius: 100px;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.15s;
}
.product-cta:hover { background: var(--navy-700); border-color: var(--navy-700); }

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  background: var(--navy-50);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-img {
  width: 100%; height: 100%; object-fit: contain;
}
.about-visual--map {
  background: none;
}
.about-visual--map iframe {
  width: 100%; height: 100%; border: 0; border-radius: var(--radius-xl);
}
.about-visual-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  color: var(--navy-300);
}
.about-visual-inner svg { width: 60px; height: 60px; }
.about-visual-inner p { font-size: 0.85rem; color: var(--navy-400); font-style: italic; font-family: var(--font-display); }
.years-badge {
  position: absolute;
  bottom: -1px; right: -1px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg) 0 var(--radius-xl) 0;
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.years-badge .num,
.years-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #FFCB80;
  display: block;
}
.years-badge .label,
.years-label { font-size: 0.7rem; color: rgba(255,255,255,0.6); margin-top: 0.2rem; line-height: 1.3; display: block; }
.about-content .eyebrow { margin-bottom: 0.75rem; }
.about-content .display-md { margin-bottom: 1.25rem; }
.about-content .display-lg { margin-bottom: 1.25rem; }
.about-content .body-md { margin-bottom: 1rem; line-height: 1.7; }
.about-content .body-lg { margin-bottom: 1rem; }
.about-content .btn-outline { display: inline-block; margin-top: 2rem; }
.about-stats {
  display: flex; gap: 2rem; margin: 1.5rem 0 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--navy-100);
  border-bottom: 1px solid var(--navy-100);
}
.about-stat .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-900);
}
.about-stat .lbl { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem; }

/* ── TESTIMONIALS CAROUSEL ── */
.reviews-carousel { position: relative; }
.reviews-viewport { overflow: hidden; width: 100%; }
.reviews-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.reviews-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 0.85rem; }
.review-star  { width: 16px; height: 16px; }
.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--navy-800);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.review-avatar {
  width: 38px; height: 38px;
  background: var(--navy-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-700);
  flex-shrink: 0;
}
.review-name { font-size: 0.85rem; font-weight: 600; color: var(--navy-900); display: block; }
.review-loc  { font-size: 0.75rem; color: var(--text-muted); display: block; }

/* Carousel controls */
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}
.reviews-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--navy-200);
  background: var(--white);
  color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, opacity 0.18s;
}
.reviews-btn:hover:not(:disabled) { background: var(--navy-50); border-color: var(--navy-400); }
.reviews-btn:disabled { opacity: 0.3; cursor: default; }
.reviews-btn svg { width: 18px; height: 18px; }
.reviews-dots { display: flex; gap: 6px; }
.reviews-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--navy-200);
  transition: background 0.2s, transform 0.2s;
}
.reviews-dot.active { background: var(--accent-orange); transform: scale(1.25); }

/* ── CONTACT STRIP ── */
.contact-strip {
  background: var(--navy-900);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}
.contact-inner,
.contact-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.contact-strip-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.contact-strip .display-md { color: var(--white); margin-bottom: 0.5rem; }
.contact-strip .body-md { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-wrap: wrap; gap: 1rem 2rem; }
.contact-detail {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.contact-detail svg { width: 15px; height: 15px; opacity: 0.6; flex-shrink: 0; }
.contact-detail a { color: rgba(255,255,255,0.75); }
.contact-detail a:hover { color: var(--white); text-decoration: underline; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.65);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-wordmark { color: var(--white); margin-top: 1rem; margin-bottom: 1rem; }
.footer-brand .logo-wordmark span { color: rgba(255,255,255,0.4); }
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.15s;
}
.footer-social a:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.footer-social svg { width: 14px; height: 14px; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.65rem;
}
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; opacity: 0.55; }
.footer-contact-item a { color: rgba(255,255,255,0.5); }
.footer-contact-item a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── SEARCH OVERLAY ── */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(11,22,39,0.9);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
}
.search-overlay.open { display: flex; }
.search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: min(600px, 90vw);
  box-shadow: var(--shadow-lg);
}
.search-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; font-weight: 500; }
.search-input-wrap {
  display: flex;
  border: 2px solid var(--navy-200);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color 0.15s;
}
.search-input-wrap:focus-within { border-color: var(--navy-500); }
.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
}
.btn-search-submit {
  background: var(--navy-900);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-search-submit:hover { background: var(--navy-700); }
.search-close-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
.search-close-row button {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted);
  font-size: 1.2rem; line-height: 1; padding: 0.25rem;
}

/* ── MOBILE DRAWER ── */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(11,22,39,0.5);
  z-index: 150;
  display: none;
}
.drawer-overlay.open { display: block; }
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 160;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  padding: 1.5rem;
}
.nav-drawer.open { transform: translateX(0); }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem;
}
.drawer-close {
  font-size: 1.3rem;
  color: var(--text-muted);
  padding: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
}
.drawer-links { display: flex; flex-direction: column; gap: 0; }
.drawer-links a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--navy-50);
  transition: color 0.15s;
}
.drawer-links a:hover { color: var(--navy-600); }
.drawer-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1.25rem 0 0.5rem;
}

/* ── ENQUIRY MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(11,22,39,0.7);
  backdrop-filter: blur(3px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: min(500px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 1.75rem 1.75rem 0;
  gap: 1rem;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-900);
}
.modal-subtitle { font-size: 0.83rem; color: var(--text-muted); margin-top: 0.25rem; }
.modal-close {
  font-size: 1.1rem; color: var(--text-muted);
  flex-shrink: 0; padding: 0.2rem;
  cursor: pointer; background: none; border: none;
}
.modal-body { padding: 1.5rem 1.75rem 1.75rem; }
.form-submit {
  width: 100%;
  background: var(--navy-900);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--navy-700); }
.modal-success { text-align: center; padding: 2.5rem 1.75rem; display: none; }
.success-icon {
  width: 64px; height: 64px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.success-icon svg { width: 32px; height: 32px; color: #2E7D32; }
.modal-success h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}
.modal-success p { font-size: 0.88rem; color: var(--text-muted); }

/* ── PRODUCT DETAIL MODAL ── */
.pd-overlay {
  position: fixed; inset: 0;
  background: rgba(11,22,39,0.75);
  backdrop-filter: blur(3px);
  z-index: 310;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.pd-overlay.open { display: flex; }
.pd-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 75vw;
  height: 75vh;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.pd-close {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 1.5rem; color: var(--text-muted);
  background: var(--white); border: none; cursor: pointer;
  z-index: 2; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.15s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.pd-close:hover { background: var(--navy-50); }
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.pd-img-col {
  background: var(--navy-50);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.pd-img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 2rem;
}
/* Image carousel arrows */
.pd-img-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.9);
  border: none; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.15s, transform 0.15s;
}
.pd-img-nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.pd-img-nav svg { width: 20px; height: 20px; color: var(--navy-900); }
.pd-img-nav--prev { left: 1rem; }
.pd-img-nav--next { right: 1rem; }
/* Dot indicators */
.pd-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem;
}
.pd-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--navy-900);
  background: transparent;
  cursor: pointer; padding: 0;
  transition: background 0.15s;
}
.pd-dot.active { background: var(--navy-900); }
.pd-dot:hover  { background: var(--navy-400); }

.pd-info-col {
  padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
  overflow-y: auto;
}
.pd-badge {
  display: inline-block;
  background: var(--navy-900); color: var(--white);
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem; border-radius: 100px;
  margin-bottom: 1rem; width: fit-content;
}
.pd-brand {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 0.35rem;
}
.pd-name {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--navy-900); line-height: 1.25; margin-bottom: 1rem;
}
.pd-desc {
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 1.5rem;
}
.pd-details {
  display: flex; flex-direction: column; gap: 0.6rem;
  padding: 1.25rem 0; margin-bottom: 1.5rem;
  border-top: 1px solid var(--navy-100);
  border-bottom: 1px solid var(--navy-100);
}
.pd-detail {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem;
}
.pd-detail strong {
  color: var(--navy-900); font-weight: 600;
}
.pd-detail span {
  color: var(--text-muted);
}
.pd-price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.pd-price {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 700;
  color: var(--navy-900);
}

/* Make product cards look clickable */
.product-card { cursor: pointer; }
.product-card:hover .product-img-wrap img { transform: scale(1.03); }
.product-img-wrap img { transition: transform 0.25s ease; }

@media (max-width: 900px) {
  .pd-modal { width: 92vw; height: 85vh; }
  .pd-layout { grid-template-columns: 1fr; grid-template-rows: 45% 1fr; }
  .pd-info-col { padding: 1.5rem; }
  .pd-name { font-size: 1.3rem; }
}
@media (max-width: 600px) {
  .pd-modal { width: 96vw; height: 90vh; }
  .pd-layout { grid-template-rows: 40% 1fr; }
  .pd-img { padding: 1rem; }
  .pd-info-col { padding: 1.25rem; }
  .pd-name { font-size: 1.15rem; }
  .pd-img-nav { width: 36px; height: 36px; }
  .pd-img-nav svg { width: 16px; height: 16px; }
  .pd-img-nav--prev { left: 0.5rem; }
  .pd-img-nav--next { right: 0.5rem; }
}

/* ── SHOP FILTERS ── */
.shop-filters {
  background: var(--white);
  border-bottom: 1px solid var(--navy-100);
  position: sticky;
  top: 108px;
  z-index: 50;
  padding: 0.75rem 0;
}
.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-tab {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1.5px solid var(--navy-200);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-tab:hover { border-color: var(--navy-500); color: var(--navy-900); }
.filter-tab.active { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }

/* ── FAQ ACCORDION ── */
.faq-group { margin-bottom: 2.5rem; }
.faq-group-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--navy-100);
}
.faq-item {
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-900);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.faq-question:hover,
.faq-question[aria-expanded="true"] { background: var(--navy-50); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--navy-500);
  transition: transform 0.2s;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer.open { max-height: 2000px; }
.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── STEP CARDS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.step-number {
  width: 44px; height: 44px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.step-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy-900); margin-bottom: 0.5rem; }
.step-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── INFO CARDS ── */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.info-card {
  background: var(--white);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.info-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--navy-50);
}
.info-card-icon svg { width: 26px; height: 26px; color: var(--navy-700); }
.info-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy-900); margin-bottom: 0.6rem; }
.info-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ── TEAM CARDS ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card { background: var(--white); border: 1px solid var(--navy-100); border-radius: var(--radius-lg); overflow: hidden; text-align: center; }
.team-photo { background: var(--navy-50); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.team-photo svg { width: 60px; height: 60px; color: var(--navy-300); }
.team-body { padding: 1.25rem; }
.team-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy-900); margin-bottom: 0.25rem; }
.team-role { font-size: 0.8rem; color: var(--text-muted); }

/* ── STATS STRIP ── */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--navy-900); border-radius: var(--radius-lg); overflow: hidden; }
.stat-item { padding: 2rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #FFCB80; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ── CONTACT LAYOUT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.contact-info-icon {
  width: 38px; height: 38px;
  background: var(--navy-50);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--navy-700); }
.contact-info-item strong { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.15rem; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; margin-top: 1.5rem; }
.map-embed iframe { display: block; }

/* ── FORM CARD ── */
.form-card {
  background: var(--white);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.form-card h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy-900); margin-bottom: 0.25rem; }
.form-card > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.form-submit-main {
  width: 100%;
  background: var(--navy-900);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 0.25rem;
}
.form-submit-main:hover { background: var(--navy-700); }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .success-icon { margin: 0 auto 1rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy-900); margin-bottom: 0.4rem; }
.form-success p { font-size: 0.85rem; color: var(--text-muted); }

/* ── RADIO GROUP ── */
.radio-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.radio-label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.88rem; color: var(--text-secondary); cursor: pointer; }
.radio-label input { accent-color: var(--navy-900); }

/* ── CTA STRIP ── */
.cta-strip { background: var(--navy-900); padding: clamp(2.5rem, 4vw, 4rem) 0; text-align: center; }
.cta-strip .display-md { color: var(--white); margin-bottom: 0.75rem; }
.cta-strip .body-md { color: rgba(255,255,255,0.65); margin-bottom: 1.75rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-strip-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ── DELIVERY CARDS ── */
.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.delivery-card { background: var(--white); border: 1px solid var(--navy-100); border-radius: var(--radius-lg); padding: 2rem 1.75rem; }
.delivery-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy-900); margin-bottom: 0.75rem; }
.delivery-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.delivery-card li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.delivery-card li::before { content: ''; width: 6px; height: 6px; background: var(--accent-orange); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }

/* ── SERVICE AREA NOTE ── */
.service-area-note { background: var(--warm-100); border: 1px solid var(--warm-200); border-radius: var(--radius-lg); padding: 1.5rem; font-size: 0.88rem; color: var(--navy-800); line-height: 1.7; }

/* ── FAQ CTA ── */
.faq-cta { background: var(--navy-50); border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin-top: 2rem; }
.faq-cta p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav-links      { display: none; }
  .btn-hamburger  { display: flex; }
  .why-grid       { grid-template-columns: 1fr 1fr; }
  .category-grid  { grid-template-columns: 1fr 1fr; }
  .product-grid   { grid-template-columns: 1fr 1fr; }
  .about-grid     { grid-template-columns: 1fr; }
  .about-visual   { display: none; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .contact-inner,
  .contact-strip-inner  { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .reviews-page   { grid-template-columns: 1fr 1fr; }
  .team-grid      { grid-template-columns: 1fr 1fr; }
  .stats-strip    { grid-template-columns: 1fr 1fr; }
  .info-grid      { grid-template-columns: 1fr; }
  .steps-grid     { grid-template-columns: 1fr 1fr; }
  .delivery-options { grid-template-columns: 1fr; }
  .shop-filters   { top: 108px; }
}
@media (max-width: 600px) {
  .why-grid       { grid-template-columns: 1fr; }
  .category-grid  { grid-template-columns: 1fr; }
  .product-grid   { grid-template-columns: 1fr; }
  .reviews-page   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; }
  .stats-strip    { grid-template-columns: 1fr 1fr; }
  .steps-grid     { grid-template-columns: 1fr; }
  .topbar-hours   { display: none; }
}
