/* =========================================================
   Elite Portable Buildings — Pure CSS (No Tailwind)
   ========================================================= */

/* ── Google Font import ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: #1e293b;          /* slate-800 */
  background: #f8fafc;     /* slate-50  */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent horizontal scroll on mobile & tablet only */
@media (max-width: 1023px) {
  body { overflow-x: hidden; }
}

::selection {
  background: #10B981;
  color: #fff;
}

img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
a { text-decoration: none; color: inherit; }
textarea { font-family: inherit; }

/* ── CSS Variables ── */
:root {
  --header-offset: 6rem;   /* height of the sticky header bar */
  --blue:        #1E40AF;
  --blue-light:  #2563EB;
  --green:       #10B981;
  --green-dark:  #059669;
  --slate-900:   #0f172a;
  --slate-800:   #1e293b;
  --slate-700:   #334155;
  --slate-500:   #64748b;
  --slate-400:   #94a3b8;
  --slate-300:   #cbd5e1;
  --slate-200:   #e2e8f0;
  --slate-100:   #f1f5f9;
  --slate-50:    #f8fafc;
  --white:       #ffffff;
  --radius-full: 9999px;
  --shadow-lg:   0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-2xl:  0 25px 50px -12px rgb(0 0 0 / 0.25);

  /* Extended palette (used by about-us page) */
  --blue-950:    #0f1f45;
  --blue-900:    #1a2e62;
  --blue-800:    #1e3a8a;
  --blue-700:    #1d4ed8;
  --blue-600:    #2563eb;
  --blue-400:    #60a5fa;
  --blue-300:    #93c5fd;
  --blue-200:    #bfdbfe;
  --blue-100:    #dbeafe;
  --blue-50:     #eff6ff;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --emerald-200: #a7f3d0;
  --emerald-100: #d1fae5;
  --emerald-50:  #ecfdf5;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    height: 75vh;
  }
}

/* Left dark panel */
.hero__left {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  min-height: 60vh;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero__left {
    width: 60%;
    padding: 0 8vw;
    min-height: 0;
    height: 100%;
  }
}

/* BG image + overlays */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: luminosity;
}
.hero__bg-overlay-1 {
  position: absolute;
  inset: 0;
  background: rgb(15 23 42 / 0.6);
}
.hero__bg-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(15 23 42 / 0.9), rgb(15 23 42 / 0.2) 50%, transparent);
}

/* Content inside left panel */
.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .hero__content { padding: 4vw 0; }
}

.hero__content-inner { margin: auto 0; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .hero__eyebrow { margin-bottom: 1.5vw; gap: 1vw; }
}

.hero__eyebrow-line {
  height: 2px;
  width: 3rem;
  background: var(--green);
  flex-shrink: 0;
}

.hero__eyebrow-text {
  color: var(--green);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .875rem;
}

@media (min-width: 1024px) { .hero__eyebrow-text { font-size: .9vw; } }

.hero__heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

@media (min-width: 1024px) { .hero__heading { font-size: 5.5vw; } }

.hero__heading-sub { color: #94a3b8; }

.hero__description {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: #cbd5e1;
  max-width: 36rem;
  font-weight: 300;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .hero__description { margin-top: 2vw; font-size: 1.2vw; }
}

.hero__cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 1024px) { .hero__cta { margin-top: 3vw; } }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 1rem;
  transition: background .2s;
}
.btn-primary:hover { background: var(--green-dark); }
.btn-primary svg { width: 1rem; height: 1rem; }

@media (min-width: 1024px) {
  .btn-primary { font-size: 1vw; }
  .btn-primary svg { width: 1.2vw; height: 1.2vw; }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  background: rgb(255 255 255 / 0.05);
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  transition: background .2s;
}
.btn-ghost:hover { background: rgb(255 255 255 / 0.1); }

/* Play circle inside ghost button (about-us hero) */
.btn-ghost__play {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-ghost__play svg { width: 1rem; height: 1rem; fill: currentColor; }

@media (min-width: 1024px) { .btn-ghost { font-size: 1vw; } }

/* Right white panel */
.hero__right {
  position: relative;
  width: 100%;
  min-height: 500px;
  background: var(--white);
  z-index: 20;
  overflow: visible;
}

@media (min-width: 1024px) {
  .hero__right {
    overflow: visible;
  }
}

@media (min-width: 1024px) {
  .hero__right {
    width: 40%;
    min-height: 0;
    height: 100%;
  }
}

.hero__img-main {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 85%;
  height: 70%;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

@media (min-width: 1024px) {
  .hero__img-main {
    right: 4%;
    width: 88%;
    height: 90%;
  }
}

.hero__img-main img,
.hero__img-overlap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.hero__img-main img:hover,
.hero__img-overlap img:hover { transform: scale(1.05); }

/* Overlap image is a direct child of .hero, positioned at the panel boundary */
.hero__img-overlap {
  display: none; /* hidden on mobile, shown on desktop */
  position: absolute;
  z-index: 50;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  outline: 12px solid var(--white);
}

@media (min-width: 1024px) {
  .hero__img-overlap {
    display: block;
    /* left:60% = exact boundary between the 60% dark panel and 40% white panel.
       translateX(-50%) shifts the image left by half its own width,
       so 50% of the image is on the dark side, 50% on the white side. */
    left: 52%;
    bottom: 15%;
    transform: translateX(-50%);
    width: 22vw;
    aspect-ratio: 4 / 3;
    outline-width: .75vw;
  }
}

.hero__social {
  position: absolute;
  top: 50%;
  right: .5rem;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  display: none;
  z-index: 40;
}

@media (min-width: 768px) { .hero__social { display: block; right: 1.5vw; } }

.hero__social a {
  color: var(--slate-400);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: color .2s;
}
.hero__social a:hover { color: var(--slate-800); }

/* Responsive tweaks: reduce top/bottom spacing on tablet & mobile */
@media (max-width: 1023px) {
  .hero {
    /* allow content to size naturally on smaller screens */
    height: auto;
  }

  .hero__left {
    padding: 1.25rem 1rem; /* tighten vertical space */
    min-height: 0;        /* remove forced tall panel */
  }

  .hero__content {
    padding: 0.5rem 0;    /* reduce inner vertical padding */
  }

  .hero__content-inner { margin: 0; }

  .hero__right {
    min-height: 0;        /* remove large reserved height */
    height: auto;
  }

  .hero__img-main {
    position: relative;   /* stack image under content on small screens */
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    box-shadow: none;
    margin-top: 1rem;
  }

  .hero__img-overlap { display: none; }
}

/* Center content on tablet & mobile */
@media (max-width: 1023px) {
  .hero__content-inner,
  .hero__eyebrow,
  .hero__heading,
  .hero__description {
    text-align: center;
  }

  .hero__eyebrow { justify-content: center; }
  .hero__content-inner { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }

  /* Features: center header and nav */
  .features__header { align-items: center; text-align: center; }
  .features__nav { justify-content: center; }
  .features__title, .features__subtitle { margin: 0 auto; }

  /* Feature cards: center icon + text */
  .feature-card { align-items: center; text-align: center; }
  .feature-card svg { margin: 0 auto 1rem; }
}

/* Extra-tight spacing for narrow phones */
@media (max-width: 599px) {
  .hero__left { padding: 0.9rem 0.75rem; }
  .hero__content { padding: 0.4rem 0; }
  .features { padding: 1.25rem 0; }
}

/* Hide the right panel and overlapping hero image on tablet and mobile
   (<= 1023px). Use !important to ensure these are removed from flow. */
@media (max-width: 1023px) {
  .hero__right,
  .hero__img-overlap {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}

/* Mobile-specific: reduce hero typography and CTA sizes */
@media (max-width: 599px) {
  .hero__eyebrow-text { font-size: 0.65rem; letter-spacing: .10em; }

  .hero__heading {
    font-size: 2rem; /* smaller main heading on phones */
    line-height: 1.05;
  }

  .hero__heading-sub { font-size: 2.3rem; display: block; }

  .hero__description {
    font-size: 0.95rem;
    margin-top: 0.6rem;
    max-width: 100%;
  }

  /* Make CTAs more compact on phones */
  .btn-primary, .btn-ghost {
    padding: 0.55rem 0.9rem;
    font-size: 0.9rem;
  }

  .btn-primary i, .btn-ghost i {
    width: 0.9rem; height: 0.9rem;
  }

  /* Slightly tighten spacing between buttons when stacked */
  .hero__cta { gap: 0.5rem; }
}

/* =========================================================
   FEATURES CAROUSEL SECTION
   ========================================================= */
.features {
  padding: 4rem 0;
  background: var(--white);
  position: relative;
  z-index: 20;
  overflow: hidden;
}

@media (min-width: 1024px) { .features { padding: 5rem 0; } }

.features__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
}

@media (min-width: 768px) { .features__header { flex-direction: row; } }

.features__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
}

@media (min-width: 768px) { .features__title { font-size: 2.25rem; } }

.features__subtitle {
  margin-top: 1rem;
  color: var(--slate-500);
  font-size: 1.125rem;
  font-weight: 300;
}

.features__nav {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.carousel-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--slate-200);
  background: transparent;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}
.carousel-btn:hover { border-color: var(--green); color: var(--green); }
.carousel-btn svg { width: 1.25rem; height: 1.25rem; }

.features__track-wrapper { overflow: hidden; position: relative; }

.features__track {
  display: flex;
  transition: transform .5s ease-in-out;
  width: 200%;
}

.features__page {
  width: 50%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 3rem;
  padding: 0 .5rem;
}

@media (min-width: 768px) {
  .features__page { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--slate-200);
  padding-top: 1.5rem;
}

.feature-card svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--green);
  margin-bottom: 1rem;
  transition: transform .3s;
}
.feature-card:hover svg { transform: translateY(-4px); }

.feature-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.02em;
  margin-bottom: .5rem;
}

.feature-card__desc {
  color: var(--slate-500);
  font-weight: 300;
  line-height: 1.7;
}

/* Dots */
.features__dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: .75rem;
}

.dot {
  height: .5rem;
  border-radius: var(--radius-full);
  border: none;
  transition: width .3s, background .3s;
  cursor: pointer;
}
.dot--active { background: var(--green); width: 2rem; }
.dot--inactive { background: var(--slate-200); width: .5rem; }
.dot--inactive:hover { background: var(--slate-300); }

/* =========================================================
   CATEGORIES SECTION
   ========================================================= */
.categories {
  padding: 4rem 0;
  background: var(--slate-50);
}

@media (min-width: 1024px) { .categories { padding: 5rem 0; } }

.categories__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

@media (min-width: 768px) { .categories__header { flex-direction: row; } }

.categories__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.04em;
}

@media (min-width: 768px) { .categories__title { font-size: 3rem; } }

.categories__subtitle {
  margin-top: 1rem;
  color: var(--slate-500);
  font-size: 1.125rem;
  font-weight: 300;
}

.categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .categories__grid { grid-template-columns: repeat(3, 1fr); } }

.category-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  background: var(--blue);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
  transition: transform .7s ease, opacity .7s ease;
}
.category-card:hover img { transform: scale(1.05); opacity: 1; }

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--blue) 0%, rgb(30 64 175 / 0.2) 50%, transparent 100%);
  opacity: .9;
}

.category-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.category-card__eyebrow {
  color: var(--green);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .75rem;
  margin-bottom: .5rem;
}

.category-card__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--blue-light), var(--blue) 50%, var(--slate-900));
  color: var(--white);
  overflow: hidden;
}

.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}

@media (min-width: 1024px) {
  .about__inner { flex-direction: row; }
}

.about__left {
  width: 100%;
}

@media (min-width: 1024px) { .about__left { width: 50%; } }

.about__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about__logo-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--white);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about__logo-icon span {
  color: var(--blue);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}

.about__logo-text { display: flex; flex-direction: column; }

.about__logo-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
}

.about__logo-sub {
  color: var(--green);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .25rem;
}

/* Image-based logo sizing */
.about__logo-link { display: inline-block; }
.about__logo-img {
  display: block;
  width: auto;
  max-width: 100px;
  height: auto;
}

@media (min-width: 1024px) {
  .about__logo-img { max-width: 100px; }
}

.about__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
  outline: 1px solid rgb(255 255 255 / 0.1);
}

.about__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.about__video:hover img { transform: scale(1.05); }
/* ensure <video> fills the video container like images */
.about__video-media,
.about__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__left .about__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 1.25rem;
}

/* slightly larger logo on wide screens */
@media (min-width: 1024px) {
  .about__logo-img { max-width: 140px; }
}

.about__video-overlay-blue {
  display: none !important;
}

.about__video-overlay-dark {
  display: none !important;
}

.about__video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__play-btn {
  width: 6rem;
  height: 6rem;
  background: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 0.2);
  transition: transform .3s, background .3s, border-color .3s;
  box-shadow: var(--shadow-2xl);
}
.about__video:hover .about__play-btn {
  transform: scale(1.1);
  background: var(--green);
  border-color: var(--green);
}

.about__play-btn svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--white);
  margin-left: .5rem;
  fill: currentColor;
}

.about__video-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgb(0 0 0 / 0.6);
  backdrop-filter: blur(8px);
  padding: .5rem 1rem;
  border-radius: .5rem;
  border: 1px solid rgb(255 255 255 / 0.1);
}

.about__video-badge span {
  color: var(--white);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
}

.about__right {
  width: 100%;
}

@media (min-width: 1024px) { .about__right { width: 50%; } }

.about__divider {
  height: 1px;
  width: 3rem;
  background: var(--green);
  margin-bottom: 2rem;
}

.about__heading {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

@media (min-width: 768px) { .about__heading { font-size: 3rem; } }

.about__body { display: flex; flex-direction: column; gap: 1.5rem; }

.about__body p {
  color: #cbd5e1;
  font-weight: 300;
  line-height: 1.7;
  font-size: 1.125rem;
}

/* Reduce vertical spacing for About section on tablet & mobile */
@media (max-width: 1023px) {
  .about {
    padding: 2.5rem 0; /* tighten top/bottom space on tablet */
  }

  .about__inner {
    gap: 2rem; /* reduce internal gap between left/right */
    padding-inline: 1rem;
  }

  .about__logo { margin-bottom: 1rem; }
  .about__video { border-radius: 1rem; }
  .about__divider { margin-bottom: 1rem; }
  .about__heading { margin-bottom: 1rem; font-size: 1.75rem; }
  .about__body p { font-size: 1rem; }
  .btn-outline-white { margin-top: 1rem; padding: .75rem 1.5rem; }
}

@media (max-width: 599px) {
  .about {
    padding: 1.25rem 0; /* extra-tight for narrow phones */
  }
  .about__inner { gap: 1rem; }
  .about__logo-img { max-width: 90px; }
  .about__heading { font-size: 1.45rem; }
  .about__body p { font-size: .98rem; }
  .btn-outline-white { margin-top: .75rem; padding: .6rem 1rem; font-size: .9rem; }
}
.btn-outline-white {
  display: inline-block;
  margin-top: 3rem;
  padding: 1rem 2rem;
  border: 1px solid rgb(255 255 255 / 0.2);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 500;
  background: transparent;
  transition: background .2s, color .2s;
}
.btn-outline-white:hover { background: var(--white); color: var(--blue); }

/* =========================================================
   SHED STYLES SECTION
   ========================================================= */
.styles-section {
  padding: 4rem 0;
  background: var(--slate-50);
}

@media (min-width: 1024px) { .styles-section { padding: 6vw 0; } }

.styles-section__inner { padding-inline: 1.5rem; }

@media (min-width: 1024px) { .styles-section__inner { padding-inline: 10vw; } }

.styles-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.styles-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.styles-section__eyebrow-line {
  height: 2px;
  width: 2rem;
  background: var(--green);
}

.styles-section__eyebrow-text {
  color: var(--green);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .875rem;
}

.styles-section__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

@media (min-width: 1024px) { .styles-section__title { font-size: 3.5vw; } }

.styles-section__subtitle {
  color: var(--slate-500);
  font-weight: 300;
  font-size: 1.125rem;
  max-width: 40rem;
}

/* Filter Tabs */
.styles-section__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) { .styles-section__tabs { gap: 1vw; margin-bottom: 3vw; } }

.tab-btn {
  font-size: .875rem;
  font-weight: 600;
  padding: .625rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--slate-200);
  background: transparent;
  color: var(--slate-500);
  transition: all .2s;
  cursor: pointer;
}
.tab-btn:hover { color: var(--blue); background: var(--white); border-color: rgb(30 64 175 / 0.3); }
.tab-btn--active { background: var(--blue); color: var(--white); border-color: var(--blue); box-shadow: var(--shadow-lg); }

/* Grid */
.styles-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px)  { .styles-section__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .styles-section__grid { grid-template-columns: repeat(4, 1fr); gap: 1.5vw; } }

.style-card {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--slate-200);
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgb(203 213 225 / 0.5);
}

@media (min-width: 1024px) { .style-card { border-radius: 1.5vw; } }

.style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.style-card:hover img { transform: scale(1.1); }

.style-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(15 23 42 / 0.9), rgb(15 23 42 / 0.2) 50%, transparent);
  opacity: .7;
  transition: opacity .5s;
}
.style-card:hover .style-card__overlay { opacity: .9; }

.style-card__body {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 1024px) { .style-card__body { padding: 1.5vw; } }

.style-card__title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

@media (min-width: 1024px) { .style-card__title { font-size: 1.8vw; } }

/* View All button */
.styles-section__cta {
  text-align: center;
  margin-top: 4rem;
}

@media (min-width: 1024px) { .styles-section__cta { margin-top: 4vw; } }

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: .875rem;
  box-shadow: 0 10px 15px -3px rgb(30 64 175 / 0.2);
  transition: background .2s;
  border: none;
}
.btn-blue:hover { background: var(--blue-light); }
.btn-blue svg { width: 1.25rem; height: 1.25rem; }

@media (min-width: 1024px) {
  .btn-blue { font-size: .8vw; padding: 1vw 2vw; }
  .btn-blue svg { width: 1.2vw; height: 1.2vw; }
}

/* =========================================================
   Tighten Styles & Quote sections spacing across breakpoints
   ========================================================= */

/* Styles-section: reduce padding/gaps on desktop/tablet/mobile */
@media (min-width: 1024px) {
  .styles-section { padding: 3rem 0; }
  .styles-section__inner { padding-inline: 6vw; gap: 1.25rem; }
  .styles-section__header { margin-bottom: 1.75rem; }
  .styles-section__tabs { margin-bottom: 1.5rem; }
  .styles-section__grid { gap: 1rem; }
}

@media (max-width: 1023px) {
  .styles-section { padding: 2rem 0; }
  .styles-section__header { margin-bottom: 1.25rem; }
  .styles-section__grid { gap: .75rem; }
  .styles-section__tabs { margin-bottom: 1rem; }
}

@media (max-width: 599px) {
  .styles-section { padding: 1rem 0; }
  .styles-section__header { margin-bottom: .75rem; }
  .styles-section__title { font-size: 1.5rem; }
  .styles-section__subtitle { font-size: .95rem; }
}

/* Quote-section: reduce vertical space and internal gaps */
@media (min-width: 1024px) {
  .quote-section { padding: 4rem 0; }
  .quote-section__inner { gap: 3rem; }
  .quote-section__left { padding-right: 0; }
}

@media (max-width: 1023px) {
  .quote-section { padding: 2.5rem 0; }
  .quote-section__inner { gap: 2rem; }
  .quote-section__subtitle { margin-bottom: 1.25rem; }
  .steps { gap: 1rem; }
}

@media (max-width: 599px) {
  .quote-section { padding: 1.25rem 0; }
  .quote-section__inner { gap: 1rem; }
  .quote-section__title { font-size: 1.5rem; }
  .quote-section__subtitle { font-size: .98rem; margin-bottom: .75rem; }
  .steps { gap: .75rem; }
}

/* =========================================================
   QUOTE SECTION
   ========================================================= */
.quote-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 60%, #eaf5e9 100%);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,140,255,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.quote-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132,204,22,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.quote-section__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

@media (min-width: 1024px) {
  .quote-section__inner { flex-direction: row; align-items: flex-start; }
}

.quote-section__left {
  width: 100%;
}

@media (min-width: 1024px) { .quote-section__left { width: 41.66%; } }

.quote-section__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

@media (min-width: 768px) { .quote-section__title { font-size: 3rem; } }

.quote-section__subtitle {
  color: var(--slate-500);
  margin-bottom: 3rem;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
}

.steps { display: flex; flex-direction: column; gap: 2rem; }

.step { display: flex; gap: 1.5rem; align-items: flex-start; }

.step__num {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--slate-200);
  color: var(--slate-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: border-color .2s, color .2s;
}
.step:hover .step__num { border-color: var(--green); color: var(--green); }

.step__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.step__desc {
  color: var(--slate-500);
  margin-top: .5rem;
  font-weight: 300;
}

/* Form Panel */
.quote-section__right {
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(15,23,42,0.10), 0 4px 16px rgba(15,23,42,0.06);
  border: 1px solid rgba(99,140,255,0.12);
  overflow: hidden;
  position: relative;
}
.quote-section__right::before {
  content: '';
  display: block;
  height: 6px;
  background: linear-gradient(90deg, #1e3a8a 0%, #638cff 50%, #84cc16 100%);
  border-radius: 20px 20px 0 0;
}

@media (min-width: 1024px) { .quote-section__right { width: 58.33%; } }

.quote-form-wrap {
  background: var(--slate-50);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--slate-100);
}

@media (min-width: 768px) { .quote-form-wrap { padding: 3rem; } }

.quote-form-wrap__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
}

.quote-form-wrap__sub {
  font-size: .75rem;
  color: var(--green);
  margin-top: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}

.form { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

.form-group { display: flex; flex-direction: column; }

.form-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--slate-400);
  margin-bottom: .75rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--slate-300);
  padding: .5rem 0;
  font-size: 1rem;
  color: var(--blue);
  font-weight: 500;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--green); }

.form-textarea { resize: none; }

.btn-submit {
  width: 100%;
  padding: 1.25rem;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: background .2s;
  margin-top: .25rem;
}
.btn-submit:hover { background: var(--blue-light); }

/* =========================================================
   RESPONSIVE UTILS
   ========================================================= */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

/* --- Home form (new) styles adjusted to match screenshot --- */
.home-form.new { padding: 20px 16px 24px; }
.home-form.new .new-form-container {
  max-width: 540px;
  margin: 0 auto;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #e6e9ee;
  border-left: 6px solid #84cc16; /* green accent */
  box-shadow: 0 12px 30px rgba(15,23,42,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}
.home-form-title.new h1 {
  font-size: 36px;
  margin: 0 0 6px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.home-form-title.new h2 {
  font-size: 11px;
  margin: 0 0 18px;
  color: #6b7280;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.home-form-form.new { display:flex; flex-direction:column; gap:14px; }
.home-form-col.new { display:flex; gap:12px; }
.home-form-col.new input,
.home-form-col.new textarea,
.home-form-form.new input,
.home-form-form.new textarea {
  width:100%;
  padding:12px 14px;
  border:1px solid #f0eaea;
  border-radius:8px;
  font-size:14px;
  box-sizing:border-box;
  background: #fff;
  color: var(--slate-900);
  box-shadow: 0 1px 0 rgba(16,24,40,0.02);
}
.home-form-col.new textarea { min-height:96px; resize:vertical; }
.home-form-col.new input::placeholder,
.home-form-col.new textarea::placeholder {
  color: #bfc6cc;
}
.home-form-form.new input:focus,
.home-form-form.new textarea:focus {
  outline: none;
  border-color: var(--slate-300);
  box-shadow: 0 4px 18px rgba(16,24,40,0.06);
}
.home-form-submit.new {
  background:#000;
  color:#fff;
  border:none;
  padding:18px 20px;
  border-radius:8px;
  cursor:pointer;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:0.18em;
  box-shadow: 0 12px 26px rgba(0,0,0,0.28);
  width:100%;
}
@media (max-width:640px){
  .home-form-col.new { flex-direction:column; }
  .home-form.new .new-form-container { padding:18px; }
  .home-form-title.new h1 { font-size:26px; }
}

/* Desktop: slightly tighten About section vertical spacing */
@media (min-width: 1024px) {
  .about {
    padding: 4rem 0; /* reduced from 8rem */
  }

  .about__inner {
    gap: 3rem; /* narrower gap between left/right panels */
    padding-inline: 4rem;
    align-items: center;
  }

  .about__logo { margin-bottom: 0.75rem; }
  .about__divider { margin-bottom: 1rem; }
  .about__heading { margin-bottom: 1rem; font-size: 2rem; }
  .about__body p { font-size: 1rem; }
  .about__logo-img { max-width: 120px; }
  .about__left, .about__right { padding-block: 0; }
}

/* ── Footer ── */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: #FFFFFF;
    padding: 100px 0;
    border-top: 1px solid #EEEEEE;
    width: 100%;
}

.footer-content-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 40px;
    flex-wrap: wrap;
}

.footer-content-socials a {
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.footer-content-socials a:hover {
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
}

.footer-content-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    width: 15%;
}

.footer-content h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 15px;
    line-height: 1em;
}

.footer-content h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #999999;
    font-size: 15px;
    line-height: 1em;
}

@media (max-width: 809px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        padding: 100px 50px;
    }

    .footer-content {
        width: 100%;
    }
}


/* =========================================================
   ABOUT US PAGE STYLES
   ========================================================= */

/* ── Hero (au- prefix keeps these isolated) ── */
.au-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 6rem;
}
.au-hero__bg { position: absolute; inset: 0; z-index: 0; }
.au-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.au-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--blue-950) 0%,
        rgba(15, 31, 69, 0.90) 50%,
        rgba(15, 31, 69, 0.40) 100%
    );
}
.au-hero .container { position: relative; z-index: 10; }
.au-hero__inner { max-width: 56rem; margin: 0 auto; text-align: center; }

.au-hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.au-hero__eyebrow-line { height: 2px; width: 3rem; background-color: var(--emerald-500); flex-shrink: 0; }
.au-hero__eyebrow-text {
    color: var(--emerald-400);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.au-hero__heading {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}
.au-hero__heading-gradient {
    background: linear-gradient(to right, var(--emerald-400), var(--emerald-200));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.au-hero__sub {
    font-size: 1.25rem;
    color: var(--blue-100);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    font-weight: 300;
}
.au-hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* About-us primary button (dark text on green — differs from global .btn-primary) */
.au-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--emerald-500);
    color: var(--blue-950);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.3s, gap 0.3s;
    font-size: 1rem;
}
.au-btn-primary:hover { background-color: var(--emerald-400); gap: 1rem; }
.au-btn-primary svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }

/* ── Stats Bar ── */
.stats-section { position: relative; z-index: 20; margin-top: -3rem; }

.stats-card {
    background-color: var(--white);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1.5rem 2rem;
    border: 1px solid var(--slate-100);
}

.stats-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-100);
}
.stat-item:first-child { padding-top: 0; border-top: none; }

.stat-icon {
    width: 4rem; height: 4rem;
    border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.stat-icon--blue  { background-color: var(--blue-50); }
.stat-icon--blue  svg { width: 2rem; height: 2rem; color: var(--blue-600); }
.stat-icon--emerald { background-color: var(--emerald-50); }
.stat-icon--emerald svg { width: 2rem; height: 2rem; color: var(--emerald-600); }

.stat-number { font-size: 1.875rem; font-weight: 700; color: var(--blue-950); line-height: 1; margin-bottom: 0.25rem; }
.stat-label  { color: var(--slate-500); font-weight: 500; }

@media (min-width: 768px) {
    .stats-card { padding: 2rem; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
    .stat-item { padding: 0 2rem; border-top: none; border-left: 1px solid var(--slate-100); }
    .stat-item:first-child { padding-left: 0; border-left: none; }
}

/* ── Our Story ── */
.story-section { padding: 5rem 0; overflow: hidden; }
.story-layout { display: flex; flex-direction: column; gap: 4rem; align-items: center; }

.story-img-wrap { width: 100%; position: relative; }
.story-img-bg {
    position: absolute;
    top: 0; left: -1rem;
    width: 100%; height: 100%;
    background-color: rgba(16, 185, 129, 0.10);
    border-radius: 1.5rem;
    transform: translate(-1rem, 1rem);
    z-index: 0;
}
.story-img {
    position: relative; z-index: 10;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    width: 100%; object-fit: cover;
    aspect-ratio: 4 / 3;
}
.story-quote {
    display: none;
    position: absolute;
    bottom: -2.5rem; right: -2.5rem;
    z-index: 20;
    background-color: var(--blue-950);
    color: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    max-width: 18rem;
}
.story-quote__stars { display: flex; gap: 0.5rem; color: var(--emerald-400); margin-bottom: 0.75rem; }
.story-quote__stars svg { width: 1.25rem; height: 1.25rem; }
.story-quote p { font-weight: 500; font-size: 1rem; line-height: 1.4; }

.story-content { width: 100%; }
.story-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: var(--blue-50);
    color: var(--blue-700);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.story-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--blue-950);
    margin-bottom: 2rem;
    line-height: 1.2;
}
.story-heading .accent-blue    { color: var(--blue-600); }
.story-heading .accent-emerald { color: var(--emerald-500); }
.story-body { display: flex; flex-direction: column; gap: 1.5rem; font-size: 1.125rem; color: var(--slate-600); line-height: 1.75; }

.story-checklist { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.check-item { display: flex; align-items: center; gap: 1rem; }
.check-icon {
    width: 2rem; height: 2rem;
    border-radius: 50%;
    background-color: var(--emerald-100);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.check-icon svg { width: 1.25rem; height: 1.25rem; color: var(--emerald-600); }
.check-label { color: var(--slate-800); font-weight: 500; }

@media (min-width: 1024px) {
    .story-layout { flex-direction: row; gap: 5rem; }
    .story-img-wrap { width: 50%; flex-shrink: 00; flex-shrink: 0;}
    .story-content { width: 50%; padding-left: 2.5rem; }
    .story-quote { display: block; }
}

/* ── Elite Difference (Bento Grid) ── */
.difference-section { padding: 5rem 0; background-color: var(--blue-950); color: var(--white); }
.difference-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.difference-heading { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1.5rem; }
.difference-sub { color: var(--blue-200); font-size: 1.125rem; line-height: 1.75; }

.bento-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 72rem; margin: 0 auto; }
.bento-card {
    background-color: var(--blue-900);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}
.bento-card:hover { transform: translateY(-4px); }
.bento-card__glow {
    position: absolute; top: 0; right: 0;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    transition: background-color 0.5s;
}
.bento-card__icon { margin-bottom: 1.5rem; position: relative; z-index: 1; }
.bento-card__icon svg { display: block; }
.bento-card h3 { font-weight: 700; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.bento-card p  { line-height: 1.75; position: relative; z-index: 1; }

.bento-card--large { padding: 2rem; }
.bento-card--large .bento-card__glow { width: 16rem; height: 16rem; background-color: rgba(16,185,129,0.10); }
.bento-card--large:hover .bento-card__glow { background-color: rgba(16,185,129,0.20); }
.bento-card--large .bento-card__icon svg { width: 3rem; height: 3rem; color: var(--emerald-400); }
.bento-card--large h3 { font-size: 1.5rem; }
.bento-card--large p  { color: var(--blue-100); font-size: 1.125rem; max-width: 28rem; }

.bento-card--small .bento-card__glow { width: 8rem; height: 8rem; }
.bento-card--small .bento-card__icon svg { width: 2.5rem; height: 2.5rem; }
.bento-card--small h3 { font-size: 1.125rem; }
.bento-card--small p  { color: var(--blue-200); }

.bento-card--accent-blue .bento-card__glow          { background-color: rgba(96,165,250,0.10); }
.bento-card--accent-blue:hover .bento-card__glow    { background-color: rgba(96,165,250,0.20); }
.bento-card--accent-blue .bento-card__icon svg      { color: var(--blue-400); }
.bento-card--accent-emerald .bento-card__glow       { background-color: rgba(16,185,129,0.10); }
.bento-card--accent-emerald:hover .bento-card__glow { background-color: rgba(16,185,129,0.20); }
.bento-card--accent-emerald .bento-card__icon svg   { color: var(--emerald-400); }

.bento-card--medium {
    background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
    display: flex; flex-direction: column;
    gap: 2rem; align-items: center; text-align: center;
}
.bento-card--medium .card-avatar {
    flex-shrink: 0;
    width: 6rem; height: 6rem;
    background-color: rgba(15,31,69,0.50);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.bento-card--medium .card-avatar svg { width: 3rem; height: 3rem; color: var(--blue-300); }
.bento-card--medium h3 { font-size: 1.5rem; margin-bottom: 0.75rem; text-align: left; }
.bento-card--medium p  { color: var(--blue-100); font-size: 1.125rem; text-align: left; }

@media (min-width: 768px) {
    .bento-grid { grid-template-columns: repeat(3, 1fr); }
    .bento-card--large  { grid-column: span 2; padding: 3rem; }
    .bento-card--medium { grid-column: span 2; flex-direction: row; text-align: left; padding: 3rem; }
}

/* ── CTA Section ── */
.cta-section { position: relative; padding: 5rem 0; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; background-color: var(--emerald-600); z-index: 0; }
.cta-pattern {
    position: absolute; inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.10; z-index: 1;
}
.cta-section .container { position: relative; z-index: 10; }

.cta-heading { font-size: clamp(2rem, 6vw, 3.75rem); font-weight: 700; color: var(--white); margin-bottom: 2rem; line-height: 1.1; }
.cta-sub { color: rgba(209,250,229,0.90); font-size: 1.25rem; max-width: 42rem; margin: 0 auto 3rem; line-height: 1.75; }
.cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.btn-dark {
    display: inline-block;
    background-color: var(--blue-950);
    color: var(--white);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    font-family: inherit;
    cursor: pointer;
    border: none;
}
.btn-dark:hover { background-color: var(--blue-900); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

.btn-light {
    display: inline-block;
    background-color: var(--white);
    color: var(--emerald-600);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    font-family: inherit;
    cursor: pointer;
    border: none;
}
.btn-light:hover { background-color: var(--emerald-50); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }

@media (min-width: 640px) {
    .cta-buttons { flex-direction: row; justify-content: center; }
}
/* ============================================================
     HEADER STYLES (scoped with ts- prefix)
     ============================================================ */
  
/* ── Announce Bar ── */
.ts-announce-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: linear-gradient(90deg, #1E40AF 0%, #2563EB 50%, #10B981 100%);
  color: #fff;
  font-size: .8rem;
  font-family: "Inter", sans-serif;
  letter-spacing: .02em;
  position: relative;
}
.ts-announce-bar p { margin: 0; }

/* ── Announce Ticker ── */
.ts-announce-ticker {
  position: relative;
  overflow: hidden;
  height: 1.4em;
  min-width: 0;
  flex: 1;
}
.ts-ticker-slide {
  position: absolute;
  left: 0; right: 0;
  margin: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  white-space: nowrap;
}
.ts-ticker-slide.ts-ticker-active {
  opacity: 1;
  transform: translateY(0);
}
.ts-ticker-slide.ts-ticker-animate {
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1), opacity 0.55s ease;
}
.ts-ticker-slide.ts-ticker-exit {
  transform: translateY(-100%);
  opacity: 0;
}
.ts-announce-icon { display: flex; align-items: center; opacity: .85; }
.ts-announce-close {
  position: absolute;
  right: 1rem;
  background: transparent;
  border: none;
  color: #fff;
  opacity: .7;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: opacity .2s;
}
.ts-announce-close:hover { opacity: 1; }

/* ── Header Shell ── */
.ts-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  font-family: "Inter", sans-serif;
  /* Do NOT add backdrop-filter/transform/filter here — it would make
     this element a containing block for position:fixed children (the
     mobile nav overlay), which would break the full-screen drawer. */
}

.ts-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: .35rem 1.6rem;
  width: 100%;
  gap: 1rem;
}

/* Place nav center and CTAs/hamburger in right column */
.ts-nav { grid-column: 2; justify-self: center; }
.ts-cta-group, .ts-hamburger { grid-column: 3; justify-self: end; }

/* ── Logo ── */
.ts-logo-link { flex-shrink: 0; }
.ts-logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(37,99,235,.4));
  transition: filter .25s;
}
.ts-logo:hover { filter: drop-shadow(0 0 12px rgba(16,185,129,.55)); }

/* ── CTA Buttons ── */
.ts-cta-group {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
}

.ts-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  font-size: 1.05rem;
}

.ts-cta--phone {
  background: linear-gradient(135deg, #2563EB, #1E40AF);
  color: #fff;
  border: 1px solid rgba(255,255,255,.1);
}
.ts-cta--phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,.45);
}

.ts-cta--design {
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  border: 1px solid rgba(255,255,255,.1);
}
.ts-cta--design:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16,185,129,.45);
}

.ts-cta__icon { display: flex; align-items: center; opacity: .9; }
.ts-cta__text { display: flex; flex-direction: column; line-height: 1.2; }
.ts-cta__label { font-size: .78rem; opacity: .85; text-transform: uppercase; letter-spacing: .04em; }
.ts-cta__value { font-weight: 700; font-size: 1.25rem; }

/* ── Hamburger ── */
.ts-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.ts-hamburger span {
  display: block;
  height: 2px;
  background: #1e293b;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.ts-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.ts-hamburger.open span:nth-child(2) { opacity: 0; }
.ts-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Navigation Bar ── */
.ts-nav {
  background: transparent;
  border: none;
  justify-self: center;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Centered nav box styling */
.ts-nav__inner {
  margin: 0 auto;
  display: flex;
  gap: 0.25rem;
  align-items: center;
  background: #f8fafc;
  padding: .4rem .8rem;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(16,24,40,0.06);
}


.ts-nav__item { position: relative; }

.ts-nav__link {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .75rem;
  color: #334155;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s, background .2s;
  position: relative;
}

.ts-nav__item { position: relative; }

.ts-nav__link {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .85rem 1rem;
  color: #334155;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s, background .2s;
  position: relative;
}
.ts-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: linear-gradient(90deg, #2563EB, #10B981);
  transition: left .25s, right .25s;
  border-radius: 2px 2px 0 0;
}
.ts-nav__link:hover,
.ts-nav__link.active { color: #1E40AF; }
.ts-nav__link:hover::after { left: 0; right: 0; }

.ts-chevron { transition: transform .25s; flex-shrink: 0; }
.ts-dropdown-trigger[aria-expanded="true"] .ts-chevron { transform: rotate(180deg); }

/* ── Dropdown ── */
.ts-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 10px;
  padding: .5rem;
  min-width: 220px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s, visibility .22s, transform .22s;
  z-index: 9100;
}

/* Ensure dropdowns are positioned relative to nav box */
.ts-nav__item { position: relative; }

.ts-dropdown--models {
  min-width: 480px;
}
.ts-dropdown__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .15rem;
}

.ts-dropdown-wrap:hover .ts-dropdown,
.ts-dropdown-trigger[aria-expanded="true"] + .ts-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ts-dropdown__link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  color: #475569;
  font-size: .81rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background .18s, color .18s;
}
.ts-dropdown__link:hover {
  background: rgba(37,99,235,.08);
  color: #1E40AF;
}
.ts-dropdown__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2563EB;
  flex-shrink: 0;
  transition: background .18s;
}
.ts-dropdown__link:hover .ts-dropdown__dot { background: #10B981; }

/* ── Scrolled / Glass effect ──
   backdrop-filter is placed on a ::before pseudo-element instead of
   directly on .ts-header, because applying backdrop-filter (or
   transform/filter) to a positioned ancestor turns it into a containing
   block for position:fixed children.  That would confine the mobile
   nav overlay (position:fixed; inset:0) to the header's own bounding
   box, making the drawer invisible.  Using a pseudo-element gives the
   same visual blur without the layout side-effect.
*/
.ts-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.ts-header.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}

/* ── Viewport-relative sizing (mirrors hero section approach) ── */
@media (min-width: 1024px) {
  /* Announce bar */
  .ts-announce-bar { font-size: 0.75vw; padding: 0.4vw 1vw; gap: 0.4vw; }
  .ts-announce-close { right: 0.7vw; }

  /* Header shell */
  .ts-header { box-shadow: 0 0.15vw 1.1vw rgba(0,0,0,.08); }
  .ts-header.scrolled { box-shadow: 0 0.15vw 1.4vw rgba(0,0,0,.1); }
  .ts-header__inner { padding: 0.5vw 1.6vw; gap: 0.6vw; }

  /* Logo */
  .ts-logo { height: 6vw; filter: drop-shadow(0 0 0.4vw rgba(37,99,235,.4)); }
  .ts-logo:hover { filter: drop-shadow(0 0 0.8vw rgba(16,185,129,.55)); }

  /* CTA group */
  .ts-cta-group { gap: 0.6vw; }
  .ts-cta { padding: 0.7vw 1.4vw; gap: 0.55vw; font-size: 1.05vw; border-radius: 0.5vw; }
  .ts-cta--phone:hover { box-shadow: 0 0.4vw 1.4vw rgba(37,99,235,.45); transform: translateY(-0.15vw); }
  .ts-cta--design:hover { box-shadow: 0 0.4vw 1.4vw rgba(16,185,129,.45); transform: translateY(-0.15vw); }
  .ts-cta__icon svg { width: 1.9vw; height: 1.9vw; }
  .ts-cta__label { font-size: 0.75vw; }
  .ts-cta__value { font-size: 1.3vw; }

  /* Hamburger */
  .ts-hamburger { width: 1.8vw; height: 1.3vw; }
  .ts-hamburger span { height: 0.13vw; border-radius: 0.1vw; }
  .ts-hamburger.open span:nth-child(1) { transform: translateY(0.58vw) rotate(45deg); }
  .ts-hamburger.open span:nth-child(3) { transform: translateY(-0.58vw) rotate(-45deg); }

  /* Nav bar */
  .ts-nav__inner { padding: 0 1.6vw; }
  /* Increase navbar menu font-size for desktop view */
  .ts-nav__link { padding: 0.7vw 0.85vw; font-size: 0.95vw; gap: 0.3vw; }
  .ts-nav__link::after { height: 0.13vw; }
  .ts-chevron { width: 0.8vw; height: 0.8vw; }

  /* Dropdown */
  .ts-dropdown { top: calc(100% + 0.3vw); border-radius: 0.6vw; padding: 0.4vw; min-width: 14vw; box-shadow: 0 1.1vw 2.8vw rgba(0,0,0,.5); }
  .ts-dropdown--models { min-width: 30vw; }
  .ts-dropdown__grid { gap: 0.1vw; }
  .ts-dropdown__link { padding: 0.4vw 0.6vw; font-size: 0.75vw; border-radius: 0.35vw; gap: 0.4vw; }
  /* Increase dropdown menu font-size for desktop view */
  .ts-dropdown__link { padding: 0.4vw 0.6vw; font-size: 0.95vw; border-radius: 0.35vw; gap: 0.4vw; }
  .ts-dropdown__dot { width: 0.35vw; height: 0.35vw; border-radius: 50%; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  /* Header bar: logo left, hamburger right */
  .ts-header__inner {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
  }

  .ts-logo-link { grid-column: 1; grid-row: 1; }

  /* Hamburger: always visible in the header bar, z-index above overlay */
  .ts-hamburger {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    z-index: 9300;
  }

  .ts-cta-group { display: none; }

  /* ── Full-screen overlay nav ── */
  .ts-nav {
    position: fixed;
    inset: 0;
    z-index: 9200;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    /* Hidden state */
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    transition: opacity .3s ease, transform .3s ease;
    justify-self: unset;
    width: 100%;
    max-height: unset;
  }
  .ts-nav.open {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
  }

  /* ── Mobile overlay top bar (logo + X) ── */
  .ts-mobile-nav-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
    flex-shrink: 0;
  }
  .ts-mobile-nav-header .ts-logo { height: 90px; }

  .ts-mobile-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: transparent;
    border: none;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .4rem;
    border-radius: 50%;
    transition: background .2s;
  }
  .ts-mobile-close:hover { background: rgba(0,0,0,.06); }

  /* ── Mobile CTA buttons inside overlay ── */
  .ts-mobile-cta-group {
    display: flex;
    gap: .75rem;
    padding: .75rem 1.4rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
  .ts-mobile-cta-group .ts-cta {
    flex: 1;
    justify-content: center;
    padding: .75rem 1rem;
    font-size: .9rem;
    border-radius: 8px;
  }
  .ts-mobile-cta-group .ts-cta__value { font-size: 1rem; }
  .ts-mobile-cta-group .ts-cta__label { font-size: .7rem; }

  /* ── Nav inner: stacked menu items ── */
  .ts-nav__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    gap: 0;
  }

  .ts-nav__item { width: 100%; }

  .ts-nav__link {
    width: 100%;
    padding: 1.1rem 1.6rem;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .06em;
    border-bottom: none;
    color: #1e3a5f;
    justify-content: space-between;
  }
  .ts-nav__link::after { display: none; }

  .ts-chevron { margin-left: auto; }

  /* ── Sub-dropdown on mobile ── */
  .ts-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,.07);
    background: #f8fafc;
    padding: .25rem 0 .5rem 1.6rem;
    display: none;
    min-width: unset;
  }
  .ts-dropdown--models { min-width: unset; }
  .ts-dropdown__grid { grid-template-columns: 1fr; gap: 0; }
  .ts-dropdown__link {
    padding: .65rem .75rem;
    font-size: .88rem;
    color: #334155;
    border-bottom: 1px solid rgba(0,0,0,.04);
  }
  .ts-dropdown__link:last-child { border-bottom: none; }
  .ts-dropdown.mobile-open { display: block; }
}

/* Hide mobile-only elements on desktop */
@media (min-width: 901px) {
  .ts-mobile-nav-header { display: none; }
  .ts-mobile-cta-group { display: none; }
}

@media (max-width: 480px) {
  .ts-header__inner { padding: .45rem .9rem; }
  .ts-logo { height: 52px; }
}

/* =========================================================
   PRODUCT CATEGORY TEMPLATE
   (product-categoty-template.php)
   All classes here are either unique to this template or
   explicitly scoped to avoid conflicts with global styles.
   ========================================================= */

/* ── Slide-up animation (unique name, no conflict) ── */
.slide-up { animation: slideUp 0.8s ease-out forwards; opacity: 0; transform: translateY(20px); }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* ── Hero Banner ── */
.hero-banner { background-color: #18A87B; color: #fff; padding: 1rem; text-align: center; box-shadow: 0 4px 6px -1px rgba(0,0,0,.12); }
.hero-banner h1 { font-size: .875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2rem; font-weight: 700; color: #1e3a8a; margin-bottom: 1rem; }
.section-header p  { color: #475569; max-width: 42rem; margin: 0 auto; font-size: 1.125rem; }

/* ── Featured Models ── */
.featured-section      { padding: 6rem 1rem; max-width: 1280px; margin: 0 auto; }
.featured-models-list  { display: flex; flex-direction: column; gap: 6rem; }

.model-card {
    position: sticky;
    top: calc(var(--header-offset, 5rem) + 1rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    background-color: #f8fafc;
    padding: 1.25rem;
    border-radius: 2rem;
    box-shadow: 0 -10px 40px -15px rgba(0,0,0,.15);
    border: 1px solid rgba(226,232,240,.6);
    max-height: calc(100vh - var(--header-offset, 5rem) - 2rem);
    overflow-y: auto;
}

.model-image-wrap           { width: 100%; }
.model-image-inner          { position: relative; aspect-ratio: 16/9; border-radius: 1rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }
.model-image-inner img      { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease-out; }
.model-image-inner:hover img { transform: scale(1.05); }
.model-image-ring           { position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); border-radius: 1rem; pointer-events: none; }
.model-3d-badge             { position: absolute; bottom: .75rem; right: .75rem; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); padding: .375rem .75rem; border-radius: 9999px; box-shadow: 0 4px 6px -1px rgba(0,0,0,.1); display: flex; align-items: center; gap: .5rem; }
.model-3d-badge span        { font-size: .75rem; font-weight: 700; color: #1e3a8a; }
.model-content              { width: 100%; }
.model-content h3           { font-size: 1.5rem; font-weight: 700; color: #1e3a8a; line-height: 1.25; margin-bottom: 1rem; }
.model-content > p          { font-size: 1rem; color: #475569; line-height: 1.7; margin-bottom: 1.5rem; }
.price-box                  { background: #fff; border: 1px solid #f1f5f9; box-shadow: 0 1px 3px rgba(0,0,0,.1); border-radius: .75rem; padding: 1rem 1.5rem; display: inline-block; width: 100%; margin-bottom: 1.5rem; }
.price-label                { font-size: .75rem; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: .25rem; }
.price-value                { font-size: 2rem; font-weight: 800; color: #1e3a8a; }
.model-actions              { display: flex; flex-direction: column; gap: .75rem; }

/* .btn-primary is green pill globally — override only inside .model-actions for this template */
.model-actions .btn-primary       { padding: .875rem 1.5rem; background: #1e3a8a; color: #fff; border: none; border-radius: .75rem; font-weight: 600; font-size: 1rem; display: flex; justify-content: center; align-items: center; gap: .5rem; transition: background .2s, box-shadow .2s, transform .2s; }
.model-actions .btn-primary:hover { background: #1e40af; box-shadow: 0 10px 15px -3px rgba(0,0,0,.2); transform: translateY(-2px); }

.btn-secondary       { padding: .875rem 1.5rem; background: #fff; border: 1px solid #e2e8f0; color: #334155; border-radius: .75rem; font-weight: 600; font-size: 1rem; display: flex; justify-content: center; align-items: center; gap: .5rem; transition: background .2s, border-color .2s; }
.btn-secondary:hover { background: #f8fafc; border-color: #cbd5e1; }

/* ── Inventory ── */
.inventory-section       { padding: 6rem 0; background: #fff; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; }
.inventory-header        { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; margin-bottom: 3rem; gap: 1.5rem; }
.inventory-header h2     { font-size: 2rem; font-weight: 700; color: #1e3a8a; margin-bottom: .5rem; }
.inventory-header p      { color: #475569; font-size: 1.125rem; }
.view-all-btn            { display: flex; align-items: center; gap: .5rem; color: #18A87B; font-weight: 600; background: none; border: none; transition: color .2s; font-size: 1rem; }
.view-all-btn:hover      { color: #138762; }
.view-all-btn i          { transition: transform .2s; }
.view-all-btn:hover i    { transform: translateX(4px); }
.inventory-grid          { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.inventory-card          { background: #f8fafc; border-radius: 1.5rem; overflow: hidden; border: 1px solid #f1f5f9; display: flex; flex-direction: column; transition: box-shadow .3s; }
.inventory-card:hover    { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04); }
.inventory-img-wrap      { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.inventory-img-wrap img  { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease-out; }
.inventory-card:hover .inventory-img-wrap img { transform: scale(1.05); }
.inventory-overlay       { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5), transparent); opacity: 0; transition: opacity .3s; }
.inventory-card:hover .inventory-overlay { opacity: 1; }
.inventory-price-badge   { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,.95); backdrop-filter: blur(4px); padding: .375rem 1rem; border-radius: 9999px; font-size: .875rem; font-weight: 700; color: #1e3a8a; box-shadow: 0 1px 3px rgba(0,0,0,.1); }
.inventory-card-body     { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.inventory-card-body h4  { font-size: 1.25rem; font-weight: 700; color: #1e3a8a; margin-bottom: 1.5rem; flex-grow: 1; }
.btn-view-details        { width: 100%; padding: .875rem; background: #fff; border: 1px solid #e2e8f0; color: #1e3a8a; border-radius: .75rem; font-weight: 600; display: flex; justify-content: center; align-items: center; gap: .5rem; transition: background .2s, color .2s, border-color .2s; font-size: 1rem; }
.inventory-card:hover .btn-view-details { background: #18A87B; color: #fff; border-color: #18A87B; }

/* ── Categories (template) ─────────────────────────────────────────────────
   .categories-grid uses a hyphen (no conflict with global .categories__grid).
   .category-card base style exists globally — override via .pct-page scope.  */
.categories-section { padding: 6rem 1rem; max-width: 1280px; margin: 0 auto; }
.categories-grid    { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

.pct-page .category-card          { position: relative; border-radius: 1.5rem; overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.pct-page .category-card.large    { grid-column: span 2; aspect-ratio: 2/1; }
.pct-page .category-card img      { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease-out; }
.pct-page .category-card:hover img { transform: scale(1.1); }
.category-overlay                 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,58,138,.9), rgba(30,58,138,.2), transparent); opacity: .8; transition: opacity .3s; }
.pct-page .category-card:hover .category-overlay { opacity: 1; }
.category-content                 { position: absolute; bottom: 0; left: 0; padding: 1.5rem; width: 100%; }
.category-content h4              { color: #fff; font-weight: 700; font-size: 1.125rem; margin-bottom: .5rem; }
.category-explore                 { display: flex; align-items: center; gap: .5rem; color: #d1f0e5; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; font-size: .875rem; font-weight: 600; }
.pct-page .category-card:hover .category-explore { opacity: 1; transform: translateY(0); }

/* ── Info Sections ── */
.info-section       { padding: 6rem 0; background: #fff; border-top: 1px solid #f1f5f9; }
.info-section-inner { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.info-block         { margin-bottom: 8rem; }
.info-block:last-child { margin-bottom: 0; }
.info-grid          { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.quality-badge      { display: inline-flex; align-items: center; gap: .5rem; padding: .25rem .75rem; border-radius: 9999px; background: #f1f5f9; color: #334155; font-size: .875rem; font-weight: 600; margin-bottom: 1.5rem; }
.info-text h2       { font-size: 2rem; font-weight: 700; color: #1e3a8a; line-height: 1.2; margin-bottom: 1rem; }
.info-text > p      { font-size: 1.125rem; color: #475569; line-height: 1.7; margin-bottom: 1.5rem; }

/* .check-item / .check-icon exist globally for story section (svg icons, align-items:center).
   Override under .pct-page for template (lucide <i> icons, align-items:flex-start).          */
.check-list                 { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.pct-page .check-item       { display: flex; align-items: flex-start; gap: 1rem; }
.pct-page .check-icon       { background: #d1f0e5; padding: .25rem; border-radius: 9999px; margin-top: .25rem; flex-shrink: 0; }
.pct-page .check-icon i     { width: 1.25rem; height: 1.25rem; color: #18A87B; display: block; }
.pct-page .check-item span  { color: #334155; font-size: 1.125rem; }

.info-image-wrap        { position: relative; }
.info-image-bg          { position: absolute; inset: 0; border-radius: 3rem; z-index: 0; }
.info-image-bg.green    { background: rgba(24,168,123,.1); transform: translate(1rem, 1rem); }
.info-image-bg.blue     { background: rgba(30,58,138,.05); transform: translate(-1rem, 1rem); }
.info-image-wrap img    { position: relative; z-index: 1; border-radius: 3rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); width: 100%; object-fit: cover; aspect-ratio: 4/5; }

.use-cases-grid         { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.use-case-card          { background: #f8fafc; padding: 2rem; border-radius: 1.5rem; border: 1px solid #f1f5f9; transition: box-shadow .3s; }
.use-case-card:hover    { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1); }
.use-case-icon          { background: #fff; width: 3.5rem; height: 3.5rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 3px rgba(0,0,0,.1); margin-bottom: 1.5rem; border: 1px solid #f1f5f9; }
.use-case-icon i        { width: 1.75rem; height: 1.75rem; color: #18A87B; display: block; }
.use-case-card h4       { font-weight: 700; color: #1e3a8a; font-size: 1.25rem; margin-bottom: .75rem; }
.use-case-card p        { color: #475569; }

/* ── CTA / Quote ─────────────────────────────────────────────────────────────
   Renamed to .pct-quote-section to avoid conflict with the global .quote-section
   (which is a green emerald CTA section with ::before/::after decorations).     */
.pct-quote-section      { padding: 6rem 1rem; background-color: #1e3a8a; color: #fff; position: relative; overflow: hidden; margin: 0 1rem 3rem; border-radius: 1.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }
.quote-bg               { position: absolute; inset: 0; opacity: .2; }
.quote-bg img           { width: 100%; height: 100%; object-fit: cover; filter: blur(4px); }
.quote-bg-overlay       { position: absolute; inset: 0; background: rgba(30,58,138,.8); }
.quote-inner            { max-width: 1024px; margin: 0 auto; position: relative; z-index: 10; }
.quote-grid             { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.quote-text h2          { font-size: 2rem; font-weight: 700; line-height: 1.25; margin-bottom: 1.5rem; }
.quote-text > p         { color: #cbd5e1; font-size: 1.125rem; line-height: 1.7; margin-bottom: 1.5rem; }
.contact-details        { display: flex; flex-direction: column; gap: 1rem; padding-top: 1rem; }
.contact-item           { display: flex; align-items: center; gap: 1rem; color: #cbd5e1; }
.contact-icon           { background: rgba(255,255,255,.1); padding: .75rem; border-radius: .75rem; flex-shrink: 0; }
.contact-icon i         { width: 1.5rem; height: 1.5rem; color: #d1f0e5; display: block; }
.contact-item strong    { display: block; color: #fff; font-weight: 600; }
.contact-item span      { font-size: .875rem; }

/* ── Quote Form Card ─────────────────────────────────────────────────────────
   .form-row / .form-group / .btn-submit all exist globally in the quote-section.
   Scope exclusively to .form-card to prevent overriding global styles.           */
.form-card              { background: #fff; border-radius: 1.5rem; padding: 2rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); color: #1e3a8a; position: relative; overflow: hidden; }
.form-card::before      { content: ''; position: absolute; top: 0; left: 0; right: 0; height: .5rem; background: linear-gradient(to right, #d1f0e5, #18A87B); }
.form-card h3           { font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; }
.form-card > p          { color: #475569; margin-bottom: 2rem; }
.form-last              { margin-bottom: 1.25rem; }

.form-card .form-row    { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-card .form-group  { display: flex; flex-direction: column; gap: .375rem; }
.form-card .form-group label { font-size: .875rem; font-weight: 600; color: #334155; }
.form-card .form-group input,
.form-card .form-group textarea { width: 100%; padding: .875rem 1rem; border-radius: .75rem; background: #f8fafc; border: 1px solid #e2e8f0; outline: none; font-family: inherit; font-size: 1rem; transition: background .2s, border-color .2s, box-shadow .2s; color: #0f172a; }
.form-card .form-group input:focus,
.form-card .form-group textarea:focus { background: #fff; border-color: #18A87B; box-shadow: 0 0 0 3px rgba(24,168,123,.15); }
.form-card .form-group textarea { resize: none; }

.form-card .btn-submit   { width: 100%; padding: 1rem; margin-top: .5rem; background: #1e3a8a; color: #fff; border: none; border-radius: .75rem; font-weight: 700; font-size: 1.125rem; display: flex; justify-content: center; align-items: center; gap: .5rem; transition: background .2s, box-shadow .2s, transform .2s; cursor: pointer; font-family: inherit; }
.form-card .btn-submit:hover { background: #1e40af; box-shadow: 0 10px 15px -3px rgba(0,0,0,.2); transform: translateY(-2px); }

/* ── Product Category Template — Responsive ── */
@media (min-width: 640px) {
    .form-card .form-row    { grid-template-columns: repeat(2, 1fr); }
    .model-actions          { flex-direction: row; }
    .use-cases-grid         { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    .hero-banner h1                                    { font-size: 1rem; }
    .section-header h2, .inventory-header h2,
    .info-text h2, .quote-text h2                      { font-size: 2.5rem; }
    .inventory-header                                  { flex-direction: row; align-items: flex-end; }
    .inventory-grid                                    { grid-template-columns: repeat(2, 1fr); }
    .categories-grid                                   { grid-template-columns: repeat(3, 1fr); }
    .pct-page .category-card.large                     { grid-column: span 1; aspect-ratio: 1; }
}
@media (min-width: 1024px) {
    .featured-section, .categories-section,
    .info-section-inner                                { padding-left: 3rem; padding-right: 3rem; }
    .inventory-section .container                      { padding-left: 3rem; padding-right: 3rem; }
    .model-card                                        { flex-direction: row; padding: 3rem; border-radius: 3rem; }
    .model-card.reverse                                { flex-direction: row-reverse; }
    .model-image-wrap                                  { width: 50%; }
    .model-image-inner                                 { aspect-ratio: 4/3; border-radius: 2rem; }
    .model-image-ring                                  { border-radius: 2rem; }
    .model-3d-badge                                    { bottom: 1rem; right: 1rem; }
    .model-3d-badge span                               { font-size: .875rem; }
    .model-content                                     { width: 50%; }
    .model-content h3                                  { font-size: 2.5rem; }
    .model-content > p                                 { font-size: 1.125rem; }
    .price-value                                       { font-size: 2.5rem; }
    .model-actions                                     { gap: 1rem; padding-top: 1rem; }
    .inventory-grid                                    { grid-template-columns: repeat(3, 1fr); }
    .categories-grid                                   { grid-template-columns: repeat(4, 1fr); }
    .pct-page .category-card.large                     { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
    .info-grid                                         { grid-template-columns: repeat(2, 1fr); }
    .info-image-wrap.first                             { order: 2; }
    .info-text.first                                   { order: 1; }
    .info-text h2                                      { font-size: 3rem; }
    .quote-grid                                        { grid-template-columns: 2fr 3fr; }
    .quote-text h2                                     { font-size: 3rem; }
    .form-card                                         { padding: 2.5rem; }
    .pct-quote-section                                 { margin: 0 3rem 3rem; }
}

/* =========================================================
   Product Inventory Page
   ========================================================= */

.product-details-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.product-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

/* ── Images ── */
.product-images-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-image-container {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 4px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(45deg, #1b068f 0%, #76c41d 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.main-image-container img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 260px;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    transition: all 0.2s ease;
}

.thumbnail:hover {
    border-color: #76c41d;
    transform: translateY(-1px);
}

.thumbnail.active {
    border-color: #1b068f;
    box-shadow: 0 2px 8px rgba(27,6,143,0.25);
}

/* ── Info ── */
.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-title {
    font-size: 1.45rem;
    color: #1b068f;
    font-weight: 800;
    margin: 0;
    line-height: 1.25;
}

.product-brand {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: -4px;
}

.product-brand .label {
    font-weight: 600;
    color: #495057;
}

.product-price {
    font-size: 1.75rem;
    color: #22C55E;
    font-weight: 800;
    line-height: 1;
}

.product-status {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.status-badge, .condition-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.status-badge.in_stock,
.status-badge.in.stock {
    background: #d4edda;
    color: #155724;
}

.status-badge.out_of_stock,
.status-badge.out.of.stock {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.preorder,
.status-badge.pre-order {
    background: #fff3cd;
    color: #856404;
}

.condition-badge {
    background: #d1ecf1;
    color: #0c5460;
}

/* ── Description & Specs ── */
.product-description-inv,
.product-specifications {
    padding: 14px 16px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 3px solid #1b068f;
}

.product-description-inv h3,
.product-specifications h3 {
    color: #1b068f;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.product-description-inv p,
.product-specifications p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
    font-size: 0.875rem;
}

.product-specifications .details-section {
    margin-bottom: 10px;
}

.product-specifications .details-section h4 {
    margin: 0 0 6px 0;
    color: #1b068f;
    font-size: 0.875rem;
    font-weight: 700;
}

.product-specifications .details-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.product-specifications .details-list li {
    padding: 4px 0;
    color: #495057;
    font-size: 0.875rem;
}

.product-specifications .details-list .sublist {
    list-style: disc;
    margin: 4px 0 0 14px;
}

/* Card + grid layout for product details */
.product-specifications .card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(11,9,58,0.05);
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid rgba(27,6,143,0.07);
}

.product-specifications .card-header {
    padding: 8px 12px;
    background: linear-gradient(90deg, rgba(27,6,143,0.05), rgba(118,196,29,0.02));
}

.product-specifications .card-header h4 {
    margin: 0;
    color: #1b068f;
    font-size: 0.875rem;
    font-weight: 700;
}

.product-specifications .card-body {
    padding: 10px 12px 12px 12px;
}

.product-specifications .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px 12px;
    align-items: start;
}

.product-specifications .detail-item {
    background: #f8f9fb;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.04);
}

.product-specifications .detail-label {
    font-size: 0.72rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-specifications .detail-value {
    margin-top: 3px;
    color: #22223a;
    font-weight: 600;
    font-size: 0.875rem;
}

.product-specifications .details-raw { color: #495057; font-size: 0.875rem; }

/* Container for multiple detail-section cards (e.g., Roof + Siding) */
.product-specifications .details-sections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: start;
}

/* ── Meta ── */
.product-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
    background: #f8f9fa;
    border-radius: 8px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meta-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.8rem;
}

.meta-value {
    color: #1b068f;
    font-weight: 500;
    font-size: 0.8rem;
}

/* ── Actions ── */
.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.btn-primary-inv,
.btn-secondary-inv {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary-inv {
    background: #22C55E;
    color: white;
    flex: 1;
    min-width: 130px;
}

.btn-primary-inv:hover {
    background: #16A34A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(118,196,29,0.35);
}

.btn-secondary-inv {
    background: white;
    color: #1b068f;
    border-color: #1b068f;
    flex: 1;
    min-width: 130px;
}

.btn-secondary-inv:hover {
    background: #1b068f;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27,6,143,0.25);
}

/* ── Store Section ── */
.store-info-section {
    margin-top: 32px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
}

.store-info-section h2 {
    color: #1b068f;
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 16px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-details {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr minmax(220px, 480px);
    align-items: start;
}

.store-map {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 6px;
}

.store-item {
    background: white;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    grid-column: 1 / -1;
}

.store-item h3 {
    color: #1b068f;
    font-size: 0.975rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.store-item .store-map {
    flex: 0 0 420px;
}

.store-item .store-address,
.store-item .store-contact {
    margin: 0 0 6px 0;
}

.store-item .store-meta {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.store-item .store-meta h3 { margin: 0 0 6px 0; }
.store-item .store-meta p  { margin: 0 0 4px 0; }

.store-address,
.store-contact {
    color: #495057;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 4px 0;
}

.store-contact a {
    color: #1b068f;
    text-decoration: none;
    font-weight: 600;
}

.store-contact a:hover {
    color: #76c41d;
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .product-details-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .store-details { grid-template-columns: 1fr; }
    .store-map { order: 2; }
    .store-map iframe { height: 200px; }
    .product-specifications .details-sections-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .product-details-container { padding: 16px 12px; }

    .store-item {
        flex-direction: column;
    }

    .store-item .store-map {
        flex: 0 0 auto;
        width: 100%;
    }

    .product-title  { font-size: 1.2rem; }
    .product-price  { font-size: 1.4rem; }
    .product-brand  { font-size: 0.8rem; }

    .product-actions { flex-direction: column; }

    .btn-primary-inv,
    .btn-secondary-inv {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.875rem;
    }

    .store-info-section { padding: 14px; margin-top: 24px; }
    .store-info-section h2 { font-size: 0.9rem; }
    .store-item { padding: 14px; }
    .store-item h3 { font-size: 0.875rem; }

    .store-address,
    .store-contact { font-size: 0.8rem; word-break: break-word; }
}

@media (max-width: 480px) {
    .product-details-container { padding: 12px 8px; }
    .product-title { font-size: 1.1rem; }
    .product-price { font-size: 1.25rem; }

    .main-image-container {
        border-radius: 10px;
        border-width: 3px;
    }

    .main-image-container img { min-height: 200px; }
    .thumbnail { width: 52px; height: 52px; }
}

/* PRIVACY POLICY */
/* Page-specific styles reusing terms layout */
.terms-hero {
    background: linear-gradient(180deg, rgba(30,58,138,0.06), rgba(255,255,255,0));
    padding: 36px 24px;
    border-radius: 12px;
    margin-bottom: 28px;
    display:flex;
    align-items:center;
    gap:20px;
}
.terms-hero h1 { margin:0; font-size:2rem; color:var(--blue-900); }
.terms-meta { color:var(--slate-500); font-weight:500; }

.terms-wrap { display:grid; grid-template-columns: 1fr; gap:32px; align-items:start; }
@media (max-width: 900px) { .terms-wrap { grid-template-columns: 1fr; } }

.terms-card { background:var(--white); padding:28px; border-radius:10px; box-shadow:var(--shadow-lg); }
.terms-card h2 { color:var(--slate-800); margin-top:18px; }
.terms-card p, .terms-card li { color:var(--slate-700); line-height:1.65; }
.terms-card ul { margin-left:1.25rem; margin-top:.5rem; }

.muted { color:var(--slate-400); }

/* =========================================================
   SERVICE AREAS (STATES) SECTION
   ========================================================= */
.service-areas-section {
    position: relative;
    padding: 4rem 0;
    background: #e8e8e8;
    overflow: hidden;
    text-align: center;
}
.service-areas-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Blank_US_Map_%28states_only%29.svg/1200px-Blank_US_Map_%28states_only%29.svg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90% auto;
    opacity: 0.18;
    pointer-events: none;
}
.service-areas-heading {
    font-size: 1.875rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}
.service-areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .35rem .1rem;
    max-width: 1280px;
    margin: 0 auto;
    padding-inline: 1.5rem;
    position: relative;
    z-index: 1;
}
.service-areas-grid a {
    color: #334155;
    font-size: .875rem;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s;
    padding: .15rem .4rem;
}
.service-areas-grid a:hover {
    color: #059669;
    text-decoration: underline;
}
.service-areas-grid a:not(:last-child)::after {
    content: '|';
    margin-left: .55rem;
    color: #059669;
    opacity: .6;
}

/* =========================================================
   LOCATIONS SERVED SECTION
   ========================================================= */
.locations-served-section {
    padding: 4rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.locations-served-section .locations-served-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: .75rem;
}
.locations-served-section .locations-served-sub {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}
.locations-served-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .35rem .15rem;
    max-width: 1280px;
    margin: 0 auto;
    padding-inline: 1.5rem;
}
.locations-served-grid a {
    color: #334155;
    font-size: .875rem;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s;
    padding: .15rem .4rem;
}
.locations-served-grid a:hover {
    color: #059669;
    text-decoration: underline;
}
.locations-served-grid a:not(:last-child)::after {
    content: '|';
    margin-left: .55rem;
    color: #059669;
    opacity: .6;
}