/* SK Jain Distributors — design tokens pulled from the live site (skjdindia.com):
   primary red #D7000A, contact-bar teal #0D7B80, footer teal #005558,
   Roboto Condensed for headings/nav, Roboto for body. */

:root {
  --red: #D7000A;
  --red-dark: #A0040B;
  --teal: #0D7B80;
  --teal-dark: #005558;
  --cream: #FFFAFA;
  --cream-warm: #FFF9E3;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --line: #E5E0D8;
  --white: #FFFFFF;
  --max: 1300px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Roboto", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Roboto Condensed", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ---------- Top contact bar ---------- */
.topbar { background: var(--teal); color: var(--white); }
.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 20px;
  flex-wrap: wrap;
}
.topbar-contacts { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
}
.topbar-contacts a svg { width: 16px; height: 16px; fill: var(--white); flex: 0 0 auto; }
.topbar-contacts a:hover { color: #E5F5F5; }
.topbar-contacts a:hover svg { fill: #E5F5F5; }
.topbar .search-box input { border: none; }

/* ---------- Header ---------- */
.site-header { background: var(--cream-warm); border-bottom: 1px solid var(--line); box-shadow: 0 3px 10px rgba(0,0,0,0.08); position: relative; }
.header-row {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 20px;
}
.logo { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; }
.logo-emblem { height: 58px; width: auto; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--red);
}
.logo-text small {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .02em;
  color: var(--red);
}

.main-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.main-nav a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--red);
  padding: 8px 16px;
  border-radius: 4px;
  transition: color .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--red-dark); }

/* ---------- Products mega menu ---------- */
.nav-item-mega { position: static; }
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  padding: 14px 40px 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 50;
}
.nav-item-mega:hover .mega-menu,
.nav-item-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu-grid {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 32px;
}
.mega-menu-col { display: flex; flex-direction: column; }
.mega-menu-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.mega-menu-col a:last-child { border-bottom: none; }
.mega-menu-col a:hover { color: var(--red); }
.mega-menu-col a .arrow { color: var(--red); flex: 0 0 auto; font-size: 13px; }

@media (max-width: 900px) {
  .mega-menu { display: none; }
}

.main-nav .caret { font-size: 10px; margin-left: 2px; display: inline-block; }

.header-social { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.header-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.header-social svg { width: 15px; height: 15px; fill: var(--white); }

.search-box { display: flex; }
.search-box input {
  border: 1px solid var(--line);
  border-radius: 10px 0 0 10px;
  padding: 8px 12px;
  font-size: 13px;
  width: 180px;
}
.search-box button {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 0 10px 10px 0;
  padding: 0 14px;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--ink); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------- Mobile nav drawer ---------- */
.nav-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 90;
  opacity: 0;
  transition: opacity .25s;
}
.nav-drawer-overlay.open { opacity: 1; }
.nav-drawer-head { display: none; }

@media (min-width: 901px) {
  .nav-drawer-screen-products { display: none; }
  .nav-drawer-screen-main { display: flex; align-items: center; gap: 4px; }
  .nav-mobile-drilldown-trigger { display: none; }
}

@media (max-width: 900px) {
  .site-header { position: sticky; top: 0; z-index: 80; }
  .nav-toggle { display: block; order: 3; }
  .header-row { flex-wrap: wrap; justify-content: center; row-gap: 10px; padding: 10px 20px 0; }
  .logo { flex: 1 0 100%; justify-content: center; text-align: center; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
  .logo-emblem { height: 42px; }
  .logo-text strong { font-size: 19px; }
  .logo-text small { font-size: 9px; }
  .header-social { flex: 1 1 auto; justify-content: center; order: 2; padding-bottom: 10px; }

  .nav-drawer-overlay.open { display: block; }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    height: 100dvh;
    width: 82%;
    max-width: 320px;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    z-index: 100;
    box-shadow: 4px 0 24px rgba(0,0,0,0.25);
    transform: translateX(-100%);
    transition: transform .25s ease;
  }
  .main-nav.open { transform: translateX(0); }

  .nav-drawer-screen {
    display: none;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    background: var(--white);
    overflow-y: auto;
  }
  .nav-drawer-screen.active { display: flex; }

  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--cream-warm);
    flex: 0 0 auto;
  }
  .nav-drawer-logo { height: 34px; width: auto; }
  .nav-drawer-close {
    background: none;
    border: 1px solid var(--line);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 15px;
    color: var(--ink-soft);
    cursor: pointer;
    flex: 0 0 auto;
  }
  .nav-drawer-back {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--red);
    cursor: pointer;
    padding: 0;
  }

  .nav-drawer-screen-title {
    padding: 16px 20px 8px;
    margin: 0;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--red);
  }

  .nav-drawer-screen-main > a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
  }

  .nav-item-mega { display: none; }

  .nav-mobile-drilldown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 14px 20px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--red);
    cursor: pointer;
    text-align: left;
  }
  .nav-mobile-drilldown-trigger .caret { font-size: 20px; }

  .nav-drawer-screen-list { display: flex; flex-direction: column; }
  .nav-drawer-screen-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .nav-drawer-screen-list .arrow { color: var(--red); font-size: 13px; flex: 0 0 auto; }
}

@media (max-width: 600px) {
  .topbar-row { flex-direction: column; padding: 10px 0; }
  .topbar-contacts {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    row-gap: 6px;
    column-gap: 14px;
    padding: 0 16px;
  }
  .topbar-contacts a { font-size: 11.5px; gap: 5px; flex: 0 0 auto; white-space: nowrap; }
  .topbar-contacts a:last-child { flex-basis: 100%; justify-content: center; }
  .topbar-contacts a svg { width: 13px; height: 13px; }
  .topbar .search-box { width: calc(100% - 32px); max-width: 340px; margin: 10px 16px 0; }
  .topbar .search-box input { flex: 1; width: auto; }
}

/* ---------- Hero carousel: scrollable strip of the full catalog, circular thumbs ---------- */
.hero { background: var(--teal); padding: 30px 0 14px; position: relative; }
.hero-viewport { overflow: hidden; padding: 0 56px; }
.hero-track {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.hero-track::-webkit-scrollbar { display: none; }
.hero-card {
  scroll-snap-align: start;
  flex: 0 0 150px;
  text-align: center;
}
.hero-card .thumb {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  margin: 0 auto 14px;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card .cap {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-arrow.prev { left: 8px; }
.hero-arrow.next { right: 8px; }
@media (max-width: 700px) {
  .hero-viewport { padding: 0 40px; }
  .hero-card { flex-basis: 110px; }
  .hero-card .thumb { width: 110px; height: 110px; }
}
@media (max-width: 480px) {
  .hero { padding: 11px 0px 7px; }
  .hero-viewport { padding: 0 16px; }
  .hero-track { gap: 22px; }
  .hero-card { flex-basis: 95px; }
  .hero-card .thumb { width: 95px; height: 95px; border-width: 3px; margin-bottom: 10px; }
  .hero-card .cap { font-size: 9.5px; line-height: 1.3; letter-spacing: 0; }
  .hero-arrow { width: 30px; height: 30px; font-size: 16px; }
  .hero-arrow.prev { left: 2px; }
  .hero-arrow.next { right: 2px; }
}

/* ---------- About + Contact split ---------- */
.about-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  padding: 70px;
}
.about-contact .about-pane {
  background: var(--teal);
  color: var(--white);
  padding: 28px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 12px 0 0 12px;
}
.about-contact .about-pane h2 { color: var(--white); font-size: 34px; }
.about-contact .about-pane p { color: rgba(255,255,255,0.9); }
.about-contact .about-pane .btn-primary {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 999px;
  padding: 10px 28px;
  align-self: flex-start;
}
.about-contact .about-pane .btn-primary:hover { background: var(--red); color: var(--white); }
.about-contact .contact-pane {
  background: var(--cream-warm);
  padding: 28px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 12px 12px 0;
}
.about-contact .contact-pane h2 { color: var(--teal); font-size: 34px; text-align: center; }
.about-contact .contact-pane form { display: grid; gap: 18px; max-width: 460px; margin: 0 auto; width: 100%; }
.about-contact .contact-pane input,
.about-contact .contact-pane textarea {
  border: 1.5px solid var(--teal);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--teal);
  background: var(--white);
}
.about-contact .contact-pane input::placeholder,
.about-contact .contact-pane textarea::placeholder { color: #6FA9AC; }
.about-contact .contact-pane .btn-primary {
  background: var(--teal);
  border-radius: 8px;
  padding: 13px 20px;
  justify-self: center;
  min-width: 160px;
}
.about-contact .contact-pane .btn-primary:hover { background: var(--teal-dark); }
@media (max-width: 800px) {
  .about-contact { grid-template-columns: 1fr; padding: 24px; }
  .about-contact .about-pane, .about-contact .contact-pane { padding: 40px 24px; }
  .about-contact .about-pane { border-radius: 12px 12px 0 0; text-align: center; align-items: center; }
  .about-contact .about-pane h2 { font-size: 26px; }
  .about-contact .about-pane p { text-align: justify; }
  .about-contact .about-pane .btn-primary { align-self: center; }
  .about-contact .contact-pane { border-radius: 0 0 12px 12px; }
}

/* ---------- Top collection ---------- */
.top-collection { background: var(--cream); padding: 70px 0; text-align: center; }
.top-collection .section-title { color: var(--teal); }
.top-collection .section-subtitle { color: var(--ink-soft); margin-bottom: 40px; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}
.collection-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.collection-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.14); }
.collection-card img { width: 100%; height: 190px; object-fit: cover; }
.collection-card h3 { color: var(--teal); font-size: 20px; margin: 16px 0 6px; }
.collection-card p { color: var(--ink-soft); font-size: 14px; padding: 0 16px; }
.collection-card .btn-primary { background: var(--teal); margin: 14px 0 22px; }
.collection-card .btn-primary:hover { background: var(--teal-dark); }

/* ---------- Category directory ---------- */
.category-directory { background: var(--cream); padding: 20px 0; }
.category-directory-grid { display: flex; flex-wrap: wrap; }
.category-directory-group { flex: 1 1 200px; min-width: 180px; padding: 16px; }
.category-directory-group h3 {
  font-size: 13px;
  color: var(--red-dark);
  border-bottom: 1px solid var(--red-dark);
  padding-bottom: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.category-directory-group ul { list-style: none; margin: 0; padding: 0; }
.category-directory-group li {
  border-bottom: 1px solid var(--line);
  line-height: 1.9;
}
.category-directory-group li:last-child { border-bottom: none; }
.category-directory-group a { font-size: 12px; color: var(--ink); }
.category-directory-group a:hover { color: var(--red); }
@media (max-width: 900px) {
  .category-directory-grid { flex-direction: column; }
}

/* ---------- Why choose us ---------- */
.why-choose { background: var(--teal); padding: 50px 0 60px; text-align: center; }
.why-choose .section-title { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-card { background: var(--white); padding: 24px 20px; border-radius: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.why-card h4 { color: var(--red-dark); font-size: 21px; margin-bottom: 8px; }
.why-card p { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* ---------- Industries grid ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1300px;
  margin: 0 auto;
}
.industries-grid a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transition: transform .2s, box-shadow .2s;
}
.industries-grid a:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,0.18); }
.industries-grid .thumb { aspect-ratio: 4/3; overflow: hidden; }
.industries-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.industries-grid a:hover img { transform: scale(1.06); }
.industries-grid .label {
  display: block;
  background: var(--teal);
  color: #fff;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 10px;
}
@media (max-width: 900px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  padding: 10px 22px;
  background: var(--red);
  color: #fff;
  border-radius: 6px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  transition: background .2s;
}
.btn-primary:hover { background: var(--red-dark); }

/* ---------- Section heading ---------- */
.section { padding: 44px 0; }
.section-title {
  font-size: 30px;
  color: var(--red);
  text-align: center;
  margin-bottom: 28px;
}
.section-title.left { text-align: left; }

/* ---------- Product/category grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.product-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.1); transform: translateY(-2px); }
.product-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #f4f4f4; }
.product-card .name {
  padding: 12px 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.35;
}

/* ---------- Product collection grid (category listing / "All Products") ---------- */
.product-collection-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}
.product-collection-grid .product-card { padding-bottom: 22px; }
.product-collection-grid .product-card:hover { transform: none; box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
.product-collection-grid .product-card-image { display: block; }
.product-collection-grid .name {
  color: var(--red-dark);
  text-transform: uppercase;
  font-size: 15px;
  padding: 16px 14px 14px;
}
@media (max-width: 600px) {
  .product-collection-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-collection-grid .name { font-size: 12px; padding: 10px 8px 8px; }
  .view-now-btn { padding: 6px 16px; font-size: 12px; }
}
.view-now-btn {
  display: inline-block;
  background: var(--teal-dark);
  color: var(--white);
  border: 2px solid var(--red-dark);
  border-radius: 999px;
  padding: 8px 26px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s;
}
.view-now-btn:hover { background: var(--teal); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 13px; color: var(--ink-soft); padding: 14px 0; }
.breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Single product ---------- */
.product-title-banner { background: #F3F3F3; padding: 60px 0; text-align: center; }
.product-title-banner h1 { color: var(--teal); font-family: "Roboto", sans-serif; font-size: 40px; margin: 0; }

.page-title-banner { background: #F3F3F3; padding: 60px 0; text-align: center; }
.page-title-banner h1 { color: var(--red-dark); font-family: "Roboto Condensed", sans-serif; font-weight: 700; font-size: 34px; margin: 0; }

.product-band { background: var(--teal); padding: 40px 0; }
.product-band-grid {
  max-width: 1300px;
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 30px;
  align-items: start;
}
.product-band-main { color: var(--white); }
.product-band-main img#main-image { width: 100%; max-width: 480px; border-radius: 10px; display: block; margin: 0 auto 14px; }
.product-thumbs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }
.product-thumbs img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; border: 1px solid rgba(255,255,255,0.4); cursor: pointer; }
.product-band-main h2 { color: var(--white); text-align: center; font-size: 28px; }
.product-band-main .rich { color: var(--white); text-align: justify; }
.product-band-main .rich :is(h2, h3) { color: var(--white); }
.product-band-main .rich img { border-radius: 6px; margin: 10px 0; }

.enquiry-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  position: sticky;
  top: 20px;
}
.enquiry-card h3 { color: var(--teal); font-size: 32px; text-align: center; }
.enquiry-card form { display: grid; gap: 12px; }
.enquiry-card input, .enquiry-card textarea {
  width: 100%;
  border: 1px solid var(--teal);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--teal);
}
.enquiry-card input[readonly] { background: #F3F8F8; }
.enquiry-card button {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s;
}
.enquiry-card button:hover { background: var(--teal-dark); }

.product-testimonials { background: var(--teal); padding: 50px 0; text-align: center; }
.product-testimonials h2 { color: var(--red-dark); font-family: "Roboto Condensed", sans-serif; font-size: 48px; margin-bottom: 24px; }
.testimonial-box { background: var(--white); border-radius: 10px; padding: 30px; max-width: 1000px; margin: 0 auto; text-align: left; }

@media (max-width: 800px) {
  .product-band-grid { grid-template-columns: 1fr; }
  .product-title-banner h1 { font-size: 28px; }
  .page-title-banner h1 { font-size: 24px; }
}

/* ---------- Enquiry form ---------- */
.enquiry-box {
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  margin-top: 24px;
}
.enquiry-box h3 { color: var(--red); font-size: 20px; }
.enquiry-box form { display: grid; gap: 12px; }
.enquiry-box input, .enquiry-box textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
}
.enquiry-box button {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s;
}
.enquiry-box button:hover { background: var(--red-dark); }
.form-success { background: #E6F4EA; color: #1E6B3A; padding: 10px 14px; border-radius: 6px; margin-bottom: 12px; font-size: 14px; }
.form-error { color: var(--red-dark); font-size: 12.5px; margin-top: -8px; }

/* ---------- Industry / content page ---------- */
.page-content { padding: 30px 0 50px; }
.page-content .rich :is(p, ul, ol) { color: var(--ink-soft); }
.page-content .rich h2 { color: var(--red); font-size: 24px; margin-top: 24px; }
.page-content .rich img { border-radius: 8px; margin: 16px 0; }
.page-content .rich ul { padding-left: 20px; }

/* ---------- Generic teal page banner (Distributor Network etc.) ---------- */
.teal-banner { background: var(--teal); padding: 100px 0; text-align: center; }
.teal-banner h1 { color: var(--white); font-family: "Roboto", sans-serif; font-size: 43px; margin: 0; }
@media (max-width: 700px) {
  .teal-banner { padding: 50px 20px; }
  .teal-banner h1 { font-size: 28px; }
}

/* ---------- Contact page ---------- */
.contact-banner { background: var(--teal); padding: 50px 0; text-align: center; }
.contact-banner h1 { color: var(--white); font-size: 50px; margin: 0; }

.contact-intro { background: var(--cream); padding: 40px 0; text-align: center; }
.contact-intro .container { max-width: 900px; }
.contact-intro p { font-family: "Arima", "Roboto Condensed", sans-serif; font-weight: 600; color: var(--ink); }
.contact-intro h3 { color: var(--red-dark); font-family: "Arima", "Roboto Condensed", sans-serif; margin-top: 24px; }

.contact-offices { background: var(--cream); padding: 0 0 50px; }
.contact-offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-offices-grid h3 { color: var(--ink); font-size: 19px; }
.contact-offices-grid p { color: var(--ink-soft); font-size: 14px; }
.contact-offices-grid iframe { width: 100%; height: 220px; border: 0; border-radius: 8px; margin-top: 10px; }
@media (max-width: 800px) {
  .contact-offices-grid { grid-template-columns: 1fr; }
  .contact-banner h1 { font-size: 34px; }
}

/* ---------- About / hub cards ---------- */
.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-dark); color: var(--white); padding: 44px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); text-align: center; } }
.footer-grid h4 { color: var(--white); font-size: 20px; margin-bottom: 14px; }
.footer-grid a, .footer-grid p, .footer-grid span {
  display: block;
  color: var(--white);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
  opacity: 0.92;
}
.footer-grid a:hover { opacity: 1; text-decoration: underline; }
.footer-grid iframe { width: 100%; height: 135px; border: 0; border-radius: 6px; margin-top: 8px; }
.footer-bottom {
  background: #000;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  color: var(--white);
  padding: 14px 20px;
  margin-top: 36px;
}
.footer-bottom a { color: var(--white); text-decoration: underline; }

/* ---------- WhatsApp float button ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 40;
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Testimonials / reviews carousel ---------- */
.testimonials { padding: 50px 0; background: var(--white); text-align: center; }
.testimonials-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: center;
  text-align: left;
}
.review-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}
.review-summary-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; margin: 0 auto 10px; border: 1px solid var(--line); }
.review-summary-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-summary h3 { font-size: 17px; margin-bottom: 6px; }
.review-summary .rating-number { font-size: 20px; font-weight: 700; color: var(--ink); margin: 0 0 4px; }
.review-summary .stars { color: #F5A623; font-size: 16px; letter-spacing: 1px; }
.review-summary .rating-count { color: var(--ink-soft); font-size: 13px; margin: 0 0 4px; }
.review-summary .powered-by { color: var(--ink-soft); font-size: 12px; margin-bottom: 14px; }
.review-summary .powered-by strong { color: #4285F4; }
.review-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #4285F4;
  color: #fff;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
}
.review-cta:hover { background: #3367D6; }

.g-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  color: #4285F4;
  font-size: 11px;
  font-weight: 700;
}
.g-icon.small { width: 13px; height: 13px; font-size: 9px; }

.review-carousel { position: relative; min-width: 0; }
.review-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px;
}
.review-track::-webkit-scrollbar { display: none; }
.review-card {
  scroll-snap-align: start;
  flex: 0 0 280px;
  background: #F8F8F8;
  border-radius: 10px;
  padding: 18px;
}
.review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.review-name { font-size: 14px; font-weight: 600; color: #3B6FB6; display: flex; align-items: center; gap: 6px; margin: 0; }
.review-when { font-size: 12px; color: var(--ink-soft); margin: 0; }
.review-stars { color: #F5A623; font-size: 14px; letter-spacing: 1px; margin: 4px 0; }
.review-text { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin: 0; }

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  z-index: 2;
  font-size: 13px;
  color: var(--ink-soft);
}
.review-arrow:hover { background: #F0F0F0; }
.review-arrow.prev { left: -14px; }
.review-arrow.next { right: -14px; }

@media (max-width: 800px) {
  .testimonials-wrap { grid-template-columns: 1fr; }
  .review-arrow { display: none; }
}
