/* Root styles */
:root {
  --primary-orange: #F46700;
  --primary-green: #FD8417;
  --text-black: #000000;
  --bg-white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
  --shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
}

body {
  background: var(--bg-white) !important;
  color: var(--text-black) !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
}

/* Fixed background image */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(244, 103, 0, 0.05),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23F46700" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23FD8417" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23F46700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  z-index: -1;
  opacity: 0.3;
}

.container{max-width: 1150px !important;}

/* Glass effect cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: none;
}

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-green) !important;
  font-weight: 700;
}

.hero-overlay h1 {
  color: #fff !important;

  text-align: left !important;
}

/* Accent colors */
.accent-green {
  color: var(--primary-green) !important;
}

.accent-green {
  color: var(--primary-green) !important;
}

/* Transparent header styles for index page only */
header.site-header {
  background: transparent !important;
  border-bottom: 1px solid transparent !important;
  box-shadow: none;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

header.site-header.solid {
  background: rgb(255, 255, 255) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border) !important;
  box-shadow: none;
}

/* Invert header over hero */
header.site-header:not(.solid) .nav-links a {
  color: #fff !important;
}

header.site-header:not(.solid) .nav-links a:hover {
  background: rgba(255,255,255,.12) !important;
}

header.site-header:not(.solid) .brand span {
  color: #fff !important;
}

header.site-header:not(.solid) .brand-logo {
  filter: brightness(0) invert(1) !important;
}

header.site-header:not(.solid) .menu-btn {
  border-color: rgba(255,255,255,.5) !important;
  color: #fff !important;
}

/* Modern hero heading with animated curved underline */
.hero-heading {
  position: relative;
  text-align: center;
  display: inline-block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-black) !important;
  margin-bottom: 20px;
}

.hero-heading .underline-svg {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 20px;
  pointer-events: none;
}

/* Individual underline SVG positioning */
.hero-heading:nth-of-type(1) .underline-svg {
  bottom: -12px;
  width: 50%;
  left: 78%;
}

.hero-heading:nth-of-type(2) .underline-svg {
  bottom: -18px;
  width: 130%;
}

.hero-heading:nth-of-type(3) .underline-svg {
  bottom: -14px;
  width: 115%;
}

.hero-heading:nth-of-type(4) .underline-svg {
  bottom: -20px;
  width: 125%;
}

.hero-heading:nth-of-type(5) .underline-svg {
  bottom: -16px;
  width: 135%;
}

.hero-heading:nth-of-type(6) .underline-svg {
  bottom: -22px;
  width: 140%;
}

/* Custom styling for testimonials heading */
.testimonials-heading .underline-svg {
  bottom: -12px;
  width: 60% !important;
  left: 60% !important;
}

/* Custom styling for products heading */
.hero-heading.products-heading .underline-svg {
  bottom: -12px;
  width: 50% !important;
  left: 38% !important;
}

/* Custom styling for premium products heading */
.hero-heading.premium-products-heading .underline-svg {
  width: 50% !important;
  left: 38% !important;
}

.hero-heading .underline-path {
  stroke: var(--primary-green);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawUnderline 1.5s ease-out 0.5s forwards;
}

@keyframes drawUnderline {
  to {
    stroke-dashoffset: 0;
  }
}

/* Fixed background image section */
.fixed-bg-section {
  background-image: var(--fixed-bg-image, none);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #3a3a3a;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.fixed-bg-section.bg-loaded {
  background-image: var(--fixed-bg-image);
}

.fixed-bg-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Section header pattern (matches about.php) */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #111 !important;
  margin: 0 0 10px;
}
.section-header h2 span { color: var(--primary-green) !important; }
.section-header p { color: #666; font-size: 15px; max-width: 560px; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  /* background: rgba(253,132,23,0.10); */
  color: #000000;
  /* border-radius: 999px; */
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 12px;
}

.fixed-bg-section .content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  width: 100%;
}

/* ── Index page responsive overrides ── */

/* Products grid: 4 → 2 → 1 */
.index-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.index-products-grid .glass-card {
  box-shadow: none;
  border: none;
}
.index-products-grid .glass-card:hover {
  box-shadow: none;
  border: none;
}

/* Testimonials grid: 4 → 2 → 1 */
.index-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Achievement banner flex */
.achievement-banner {
  text-align: center;
  margin: 0 20px;
}
.achievement-banner .glass-card {
  padding: 30px 40px;
  display: inline-block;
  background: #f2f9e8;
  border: 1px solid rgba(244,103,0,0.1);
  backdrop-filter: blur(10px);
}
.achievement-banner .inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Fixed bg: disable attachment:fixed on touch devices */
@media (max-width: 860px) {
  .fixed-bg-section {
    background-attachment: scroll;
    min-height: 300px;
  }
  .index-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .index-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .achievement-banner .glass-card {
    padding: 24px 20px;
    display: block;
  }
  .achievement-banner .inner {
    gap: 20px;
  }
  .hero-heading {
    font-size: 2rem;
  }
}

@media (max-width: 540px) {
  .fixed-bg-section {
    min-height: 220px;
  }
  .index-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
  }
  .index-testimonials-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .grid.cols-3 {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 0 16px;
  }
  .grid.cols-3 .glass-card {
    padding: 20px 16px !important;
  }
  .grid.cols-3 .glass-card > div:first-child {
    width: 50px !important;
    height: 50px !important;
    margin-bottom: 12px !important;
  }
  .grid.cols-3 .glass-card > div:first-child svg {
    width: 26px !important;
    height: 26px !important;
  }
  .grid.cols-3 .glass-card h3 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
  }
  .grid.cols-3 .glass-card p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }
  .achievement-banner .inner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .hero-heading {
    font-size: 1.6rem;
  }
  .section-header h2 {
    font-size: 1.3rem;
  }
  .fixed-bg-section .content p {
    font-size: 1rem !important;
  }
  .faq details summary {
    font-size: 1rem !important;
  }
  .faq.section {
    padding: 20px !important;
  }
  .faq details {
    margin: 0 20px 20px !important;
  }
  .model-btn {
    flex: 1;
    text-align: center;
    padding: 11px 16px !important;
    font-size: 0.85rem !important;
  }
  .model-copy {
    text-align: center;
  }
  .model-copy .hero-heading {
    text-align: center;
  }
  .hero-heading {
    text-align: center !important;
  }
  /* hero overlay — 540px */
  .hero-overlay {
    padding: 12px 14px;
  }
  .hero-overlay .copy h1 {
    font-size: 12px !important;
    line-height: 1.2;
    margin: 0 0 4px;
  }
  .hero-overlay .copy p {
    font-size: 9px !important;
    margin: 0 0 8px;
    line-height: 1.4;
  }
  .hero-overlay .actions {
    gap: 6px;
  }
  .hero-overlay .actions .btn {
    padding: 7px 12px !important;
    font-size: 10px !important;
    border-radius: 8px;
  }
  .stats-grid-inner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 16px;
    margin: 0 auto 20px !important;
  }
  .stats-grid-inner .glass-card {
    padding: 14px 10px !important;
  }
  .stats-grid-inner .glass-card > div > div:first-child {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    margin-bottom: 6px !important;
  }
  .stats-grid-inner .glass-card > div > div:first-child svg {
    width: 16px !important;
    height: 16px !important;
  }
  .stats-grid-inner .glass-card > div > div:nth-child(2) {
    font-size: 1.4rem !important;
  }
  .stats-grid-inner .glass-card > div > div:nth-child(3) {
    font-size: 0.72rem !important;
  }
  .stats-grid-inner .glass-card > div > div:nth-child(4) {
    font-size: 0.65rem !important;
  }
}

/* ── 375px mobile (iPhone SE / standard Android) ── */
@media (max-width: 375px) {
  /* Container side padding */
  .container {
    padding: 0 20px;
  }

  .why-choose-section {
    padding-inline: 20px !important;
  }

  /* Section vertical padding */
  .section {
    padding: 24px 0;
  }

  /* All cards get 20px side margin */
  .index-products-grid {
    padding: 0 20px;
    gap: 14px;
  }
  .index-testimonials-grid {
    padding: 0 20px;
    gap: 14px;
  }
  .grid.cols-3 .glass-card {
    margin: 0 20px;
  }

  /* Achievement banner */
  .achievement-banner {
    padding: 0 20px;
  }
  .achievement-banner .glass-card {
    padding: 18px 16px;
  }
  .achievement-banner .inner {
    gap: 12px;
  }

  /* FAQ */
  .faq .glass-card {
    margin-left: 20px;
    margin-right: 20px;
  }
  .faq details summary {
    font-size: 0.95rem !important;
  }

  /* Hero overlay text */
  .hero-overlay {
    padding: 8px 12px;
  }
  .hero-overlay .copy h1 {
    font-size: 15px !important;
    line-height: 1.2;
    margin: 0 0 3px;
  }
  .hero-overlay .copy p {
    font-size: 11px !important;
    margin: 0 0 6px;
    line-height: 1.3;
  }
  .hero-overlay .actions {
    gap: 5px;
  }
  .hero-overlay .actions .btn {
    padding: 6px 10px !important;
    font-size: 11px !important;
    border-radius: 7px;
  }

  /* Section headers */
  .section-header {
    padding: 0 20px;
  }
  .section-header h2 {
    font-size: 1.2rem;
  }
  .section-header p {
    font-size: 13px;
  }

  /* Fixed bg section */
  .fixed-bg-section {
    min-height: 200px;
  }
  .fixed-bg-section .content {
    padding: 0 20px;
  }
  .fixed-bg-section .content p {
    font-size: 0.9rem !important;
    margin-bottom: 20px !important;
  }
  .hero-heading {
    font-size: 1.4rem;
  }
}

/* Homepage design refresh */
:root {
  --primary-orange: #f47d20;
  --primary-green: #f47d20;
  --text-black: #171310;
  --bg-white: #fffdf9;
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(23, 19, 16, 0.08);
  --shadow: 0 20px 48px rgba(20, 17, 13, 0.1);
  --shadow-soft: 0 30px 68px rgba(20, 17, 13, 0.12);
}

body {
  background: #ffffff !important;
  color: var(--text-black) !important;
}

body::before {
  display: none;
}

main > section {
  position: relative;
  z-index: 1;
}

header.site-header {
  background: rgba(255, 255, 255, 0.84) !important;
  border-bottom: 0px solid rgba(23, 19, 16, 0.08) !important;
  box-shadow: none;
}

header.site-header:not(.solid) {
  background: linear-gradient(180deg, rgba(14, 17, 20, 0.54) 0%, rgba(14, 17, 20, 0.16) 100%) !important;
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  border-bottom-color: transparent !important;
  box-shadow: none;
}

header.site-header:not(.solid) .nav-center a:not(.login-btn):not(.register-btn),
header.site-header:not(.solid) .dropdown-toggle,
header.site-header:not(.solid) .profile-btn span,
header.site-header:not(.solid) .logout-btn,
header.site-header:not(.solid) .goog-te-combo,
header.site-header:not(.solid) .goog-te-gadget .goog-te-combo {
  color: #ffffff !important;
}

header.site-header:not(.solid) .nav-center a:not(.login-btn):not(.register-btn):hover,
header.site-header:not(.solid) .dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
}

header.site-header:not(.solid) .brand-logo {
  filter: brightness(0) invert(1) drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18)) !important;
}

header.site-header:not(.solid) .profile-btn {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

header.site-header:not(.solid) .translate-icon,
header.site-header:not(.solid) .menu-btn {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.48) !important;
  box-shadow: none;
}

.hero-full {
  height: min(100vh, 920px);
  min-height: 700px;
  overflow: hidden;
  box-shadow: none;
  background: #fff;$6}

.hero-full .hero-media,
.hero-slider,
.hero-slider .slide {
  height: 100%;
}

.hero-slider .slide img,
.hero-slider .slide video {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.02);
  transition: transform 8s ease, filter 0.45s ease;
}

.hero-slider .slide.active img,
.hero-slider .slide.active video {
  transform: scale(1.08);
}

.hero-gradient {
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.12) 0%, rgba(10, 12, 16, 0.34) 54%, rgba(10, 12, 16, 0.76) 100%) !important;
}

.dots {
  bottom: 26px;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dot {
  width: 10px;
  height: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.44);
  transition: width 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.dot.active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb85b, #f47d20);
  transform: scale(1.02);
}

.model-showcase-section {
  padding: 50px !important;
  background: #ffffff;
}

.model-showcase-inner {
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.model-copy .hero-heading {
  margin-bottom: 18px !important;
}

.model-copy p,
.model-features li {
  color: #574c41 !important;
}

.model-features {
  gap: 16px;
}

.feat-icon {
  box-shadow: none;
}

.model-viewer-wrap {
  border-radius: 30px !important;
  background: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.76) !important;
  box-shadow: none;
}

.model-viewer-wrap::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 125, 32, 0.22) 0%, rgba(244, 125, 32, 0) 70%);
  pointer-events: none;
}

.model-viewer-wrap model-viewer {
  height: 350px !important;
}

.model-badge {
  background: linear-gradient(135deg, #ffb85b, #f47d20);
  box-shadow: none;
}

.model-hint {
  background: #ffffff;
  color: #66594c;
  font-weight: 600;
}



.container.section.reveal,
.container.section.faq {
  padding-block: 50px !important;
  margin: auto;
}

.cards-floating {
  margin-top: -18px;
}

.section-header {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 4vw, 52px) !important;
}

.section-header h2 {
  font-family: "Sora", sans-serif;
  font-size: 45px !important;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-header h2 span {
  color: transparent !important;
  background: linear-gradient(135deg, #f47d20 0%, #ffb85b 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-header p {
  color: #65594c !important;
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  line-height: 1.8;
  max-width: 640px !important;
}

.eyebrow {
  padding: 0 0 10px !important;
  margin-bottom: 16px !important;
  color: #925014 !important;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase;
}

.model-copy .eyebrow {
  position: relative;
  display: inline-block;
  padding: 0 0 12px !important;
  margin-bottom: 18px !important;
  color: #f47d20 !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
}

.model-copy .eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #f47d20 15%, #ffb85b 50%, #f47d20 85%, transparent 100%);
}

.hero-heading {
  font-family: "Sora", sans-serif;
  color: var(--text-black) !important;
  letter-spacing: -0.045em;
}

.glass-card,
.faq-card,
.achievement-banner .glass-card {
  background: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.76) !important;
  border-radius: 28px !important;
  box-shadow: none;
  overflow: hidden;
}

.faq-card.open {
  box-shadow: none;
}

.grid.cols-3 {
  gap: clamp(22px, 2.4vw, 30px) !important;
}

.grid.cols-3 .glass-card {
  padding: clamp(30px, 3vw, 40px) clamp(22px, 3vw, 30px) !important;
}

.grid.cols-3 .glass-card > div:first-child {
  box-shadow: none;
}

.grid.cols-3 .glass-card h3 {
  color: var(--text-black) !important;
  font-size: 1.24rem;
}

.grid.cols-3 .glass-card p {
  color: #65594c !important;
}

.why-choose-section {
  padding-block: clamp(52px, 7vw, 90px) !important;
  max-width: 1200px !important;
  padding-inline: 24px 0 !important;
}

.why-choose-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
}



.why-choose-panel {
  --reveal-delay: 0.02s;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 32px 32px 0;
  border-radius: 32px;

}





.why-choose-header {
  text-align: left;
  max-width: 100%;
  margin: 0 0 24px !important;
}

.why-choose-header .eyebrow {
  position: relative;
  display: inline-block;
  padding: 0 0 12px !important;
  margin-bottom: 18px !important;
  color: #f47d20 !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
}

.why-choose-header .eyebrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 2.5px;
  background: linear-gradient(90deg, transparent 0%, #f47d20 15%, #ffb85b 50%, #f47d20 85%, transparent 100%);
}

.why-choose-header h2 {
  display: block;
  margin: 12px 0 20px !important;
  color: var(--text-black) !important;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3vw, 45px) !important;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-align: left;
}

.why-choose-header p {
  margin-inline: 0;
  max-width: 36rem !important;
}

.range-header .eyebrow {
  position: relative;
  display: inline-block;
  padding: 0 0 12px !important;
  margin-bottom: 18px !important;
  color: #f47d20 !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
}

.range-header .eyebrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #f47d20 15%, #ffb85b 50%, #f47d20 85%, transparent 100%);
}

.range-header h2 {
  display: block;
  margin: 12px 0 20px !important;
  color: var(--text-black) !important;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3vw, 45px) !important;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.why-choose-lead {
  position: relative;
  z-index: 1;
  margin: 0 0 26px;
  color: #4f4336;
  font-size: 1rem;
  line-height: 1.9;
}

.why-choose-pill-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.why-choose-pill-row span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(244, 125, 32, 0.08);
  border: 1px solid rgba(244, 125, 32, 0.14);
  color: #8a4b16;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 22px);
}

.why-choose-card {
  position: relative;
  min-height: 100%;
  padding: 28px 26px !important;
  border: 1px solid rgba(23, 19, 16, 0.08) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 245, 0.92) 100%) !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.why-choose-card:nth-child(1) {
  --reveal-delay: 0.08s;
}

.why-choose-card:nth-child(2) {
  --reveal-delay: 0.14s;
}

.why-choose-card:nth-child(3) {
  --reveal-delay: 0.2s;
}

.why-choose-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 125, 32, 0.84), rgba(255, 184, 91, 0.36));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.why-choose-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.why-choose-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffb85b, #f47d20);
  box-shadow: 0 18px 34px rgba(244, 125, 32, 0.2);
}

.why-choose-icon svg {
  width: 30px;
  height: 30px;
}

.why-choose-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 16, 13, 0.05);
  color: #5e503f;
  font-family: "Sora", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-choose-card h3 {
  margin: 0 0 12px;
  color: var(--text-black) !important;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.2;
}

.why-choose-card p {
  margin: 0;
  color: #645646 !important;
  font-size: 0.96rem;
  line-height: 1.75;
}

.why-choose-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 20px;
}

.why-choose-card-wide .why-choose-card-top {
  margin: auto;
}

.why-choose-card-wide .why-choose-card-copy {
  align-self: center;
}

.fixed-bg-section {
  min-height: clamp(380px, 48vw, 520px);
  overflow: hidden;
  box-shadow: none;
}

.fixed-bg-section::before {
  background: linear-gradient(135deg, rgba(12, 16, 20, 0.82) 0%, rgba(15, 18, 21, 0.58) 54%, rgba(244, 125, 32, 0.34) 100%);
}

.fixed-bg-section .content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.fixed-bg-section .content p {
  color: rgba(255, 245, 236, 0.88) !important;
  line-height: 1.8;
}

.fixed-bg-section .btn.light {
  background: linear-gradient(135deg, var(--primary-green) 0%, #ff9a3d 100%);
  color: #ffffff;
  box-shadow: none;
}

.index-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px) !important;
}

.index-products-grid .glass-card {
  padding: 26px !important;
  box-shadow: none;
}

.index-products-grid .glass-card > div:first-child {
  border-radius: 22px !important;
  background: #ffffff;
}

.index-products-grid img {
  height: 236px !important;
  border-radius: 18px;
}

.index-products-grid h4 {
  color: var(--text-black) !important;
  font-size: 1.18rem !important;
  text-align: center;
  line-height: 1.3;
}

.index-products-grid p {
  color: #6b5d4d !important;
  text-align: center;
  font-size: 0.94rem !important;
}

.index-products-grid .btn {
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-green) 0%, #ff9a3d 100%);
}

.stats-grid-inner {
  gap: clamp(16px, 2vw, 24px) !important;
  margin: 0 auto clamp(34px, 5vw, 70px) !important;
}

.stats-grid-inner .glass-card {
  padding: 32px 24px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
}

.stats-grid-inner .glass-card > div > div:first-child {
  background: linear-gradient(135deg, #ffb85b, #f47d20) !important;
}

.stats-grid-inner .glass-card > div > div:nth-child(2) {
  color: transparent !important;
  background: linear-gradient(180deg, #ffb85b 0%, #e5660f 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.achievement-banner .glass-card {
  width: 100%;
  background: linear-gradient(135deg, rgba(244, 125, 32, 0.1), rgba(244, 125, 32, 0.05)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: none;
  padding: clamp(24px, 3vw, 34px) clamp(20px, 3vw, 32px) !important;
}

.achievement-banner .inner span {
  color: #000000 !important;
}

.achievement-banner .inner > div > div:first-child {
  background: linear-gradient(135deg, #ffb85b, #f47d20) !important;
  box-shadow: none;
}

.index-testimonials-grid {
  gap: clamp(18px, 2vw, 24px) !important;
}

.index-testimonials-grid .glass-card {
  padding: 26px 24px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.index-testimonials-grid .glass-card p {
  color: #65594c !important;
  font-size: 0.94rem !important;
}

.index-testimonials-grid .glass-card > div:first-child {
  top: 16px !important;
  left: 18px !important;
  color: rgba(244, 125, 32, 0.18) !important;
  font-size: 3.4rem !important;
}

.faq-wrap {
  max-width: 1200px;
  gap: 16px;
}

.faq-card {
  background: #ffffff !important;
  border: 1px solid rgba(244, 125, 32, 0.12) !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
}

.faq-card.open {
  border-color: rgba(244, 125, 32, 0.24) !important;
  box-shadow: none;
}

.faq-card-btn {
  padding: 24px 28px !important;
}

.faq-card-btn span {
  color: #1d1814;
}

.faq-body p {
  color: #65594c !important;
  line-height: 1.84 !important;
}

@media (max-width: 1100px) {
  .hero-full {
    /* min-height: 620px; */
  }

  .why-choose-shell {
    grid-template-columns: 1fr;
  }

  .index-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-showcase-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header.site-header:not(.solid) {
    background: linear-gradient(180deg, rgba(14, 17, 20, 0.72) 0%, rgba(14, 17, 20, 0.22) 100%) !important;
  }

  .hero-full {
    height: 300px !important;
    min-height: 300px !important;
  }

  .hero-full .hero-media,
  .hero-slider,
  .hero-slider .slide {
    height: 300px !important;
  }

  .hero-slider .slide img {
    object-fit: cover !important;
  }

  .model-showcase-section {
    padding: 58px 0 !important;
  }

  .container.section.reveal,
  .container.section.faq {
    padding-block: 0px !important;
  }

  .why-choose-panel,
  .why-choose-card {
    border-radius: 24px !important;
  }

  .why-choose-section {
    padding-inline: 16px !important;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .fixed-bg-section {
    border-radius: 0px;
    min-height: 360px;
    margin: 20px 0 !important;
  }

  .stats-grid-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .achievement-banner .inner {
    gap: 18px;
  }
}

@media (max-width: 540px) {
  .hero-full {
    height: 280px !important;
    min-height: 280px !important;
  }

  .hero-full .hero-media,
  .hero-slider,
  .hero-slider .slide {
    height: 280px !important;
  }

  .hero-slider .slide img {
    object-fit: cover !important;
  }

  .dots {
    bottom: 16px;
    padding: 8px 10px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 22px;
  }

  .section-header {
    padding: 0 !important;
  }

  .why-choose-header,
  .why-choose-lead {
    text-align: center;
  }

  .why-choose-header h2 {
    text-align: center;
  }

  .why-choose-header p {
    margin-inline: auto;
  }

  .why-choose-pill-row {
    justify-content: center;
  }

  .why-choose-card {
    padding: 24px 20px !important;
  }

  .why-choose-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .index-products-grid,
  .index-testimonials-grid,
  .stats-grid-inner {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
  }

  .grid.cols-3 {
    padding: 0 !important;
  }

  .grid.cols-3 .glass-card,
  .index-products-grid .glass-card,
  .index-testimonials-grid .glass-card,
  .stats-grid-inner .glass-card {
    margin: 0 !important;
  }

  .achievement-banner {
    margin: 0;
  }

  .achievement-banner .inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .fixed-bg-section {
    min-height: 310px;
  }

  .faq-card-btn {
    padding: 18px 18px !important;
  }

  .faq-body p {
    padding: 0 18px 18px 18px !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .why-choose-section {
    padding-block: 3rem !important;
    padding-inline: 1.25rem !important;
    overflow: hidden;
  }

  .why-choose-shell {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .why-choose-shell > * {
    min-width: 0;
  }

  .why-choose-panel {
    padding: 0 !important;
  }

  .why-choose-header {
    text-align: center !important;
    margin-bottom: 1rem !important;
  }

  .why-choose-header .eyebrow,
  .why-choose-card h3,
  .why-choose-chip {
    font-size: 0.6rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  .why-choose-header h2 {
    font-size: 1.5625rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    margin: 0.75rem auto 1rem !important;
  }

  .why-choose-header p,
  .why-choose-lead,
  .why-choose-card p,
  .why-choose-pill-row span {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
  }

  .why-choose-header p,
  .why-choose-lead {
    max-width: 36rem !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  .why-choose-pill-row {
    justify-content: center !important;
    gap: 0.625rem !important;
  }

  .why-choose-pill-row span {
    padding: 10px !important;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
  }

  .why-choose-card-wide {
    grid-column: 1 / -1 !important;
    grid-template-columns: 1fr !important;
  }

  .why-choose-card {
    padding: 1.375rem !important;
  }
}

@media (max-width: 767px) {
  .why-choose-section {
    padding-block: 2.5rem !important;
    padding-inline: 0.875rem !important;
    overflow: hidden;
  }

  .why-choose-shell {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .why-choose-shell > * {
    min-width: 0;
  }

  .why-choose-panel {
    padding: 0 !important;
  }

  .why-choose-header {
    text-align: center !important;
    margin-bottom: 0.875rem !important;
  }

  .why-choose-header .eyebrow,
  .why-choose-card h3,
  .why-choose-chip {
    font-size: 0.6rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
    text-align: center !important;
  }

  .why-choose-chip{
    justify-content: center;
  }
  .why-choose-header h2 {
    font-size: 1.1rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    margin: 0.75rem auto 1rem !important;
  }

  .why-choose-icon{
    width: 40px;
    height: 40px;
  }

  .why-choose-header p,
  .why-choose-lead,
  .why-choose-card p,
  .why-choose-pill-row span {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    text-align: center;
  }

  .why-choose-header p,
  .why-choose-lead {
    max-width: 100% !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  .why-choose-pill-row {
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 6px !important;
  }

  .why-choose-pill-row span {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 6px 4px !important;
    font-size: 0.55rem !important;
  }

  .why-choose-grid {
    grid-template-columns: 1fr !important;
    gap: 0.875rem !important;
  }

  .why-choose-card,
  .why-choose-card-wide {
    padding: 1.25rem !important;
  }

  .why-choose-card-top,
  .why-choose-card-wide .why-choose-card-top {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.75rem !important;
  }

  .why-choose-card-copy {
    text-align: center !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .fixed-bg-section {
    min-height: 22rem !important;
    padding: 3rem 0 !important;
    background-attachment: scroll !important;
    overflow: hidden;
  }

  .fixed-bg-section .container {
    padding-inline: 1.25rem !important;
  }

  .fixed-bg-section .content {
    max-width: 36rem;
    margin: 0 auto;
    padding: 0.75rem 0 !important;
  }

  .fixed-bg-section .hero-heading {
    font-size: 1.5625rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    margin: 0 auto 1rem !important;
  }

  .fixed-bg-section .content p,
  .fixed-bg-section .btn.light {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
  }

  .fixed-bg-section .content p {
    max-width: 30rem !important;
    margin: 0 auto 1.25rem !important;
    text-align: center !important;
  }

  .fixed-bg-section .btn.light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 10rem;
    padding: 0.875rem 1.25rem !important;
  }
}

@media (max-width: 767px) {
  .fixed-bg-section {
    min-height: 18rem !important;
    padding: 2.5rem 0 !important;
    background-attachment: scroll !important;
    overflow: hidden;
  }

  .fixed-bg-section .container {
    padding-inline: 0.875rem !important;
  }

  .fixed-bg-section .content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0.5rem 0 !important;
  }

  .fixed-bg-section .hero-heading {
    font-size: 1.5625rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    margin: 0 auto 0.875rem !important;
  }

  .fixed-bg-section .content p,
  .fixed-bg-section .btn.light {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
  }

  .fixed-bg-section .content p {
    max-width: 100% !important;
    margin: 0 auto 1rem !important;
    text-align: center !important;
  }

  .fixed-bg-section .btn.light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 14rem);
    padding: 0.875rem 1rem !important;
  }
}



/* Loader styles */
.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  padding: 40px;
}

.loader {
  width: 48px;
  height: 48px;
  position: relative;
  display: inline-block;
}

.loader:before {
  content: '';
  width: 48px;
  height: 5px;
  background: rgba(244, 125, 32, 0.3);
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow324 0.5s linear infinite;
}

.loader:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #f47d20;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  animation: jump7456 0.5s linear infinite;
}

@keyframes jump7456 {
  15% {
    border-bottom-right-radius: 3px;
  }

  25% {
    transform: translateY(9px) rotate(22.5deg);
  }

  50% {
    transform: translateY(18px) scale(1, .9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }

  75% {
    transform: translateY(9px) rotate(67.5deg);
  }

  100% {
    transform: translateY(0) rotate(90deg);
  }
}

@keyframes shadow324 {
  0%,
  100% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.2, 1);
  }
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.loader-overlay .loader {
  margin: 0;
}


@media (min-width: 768px) and (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }

  body header.site-header .container.nav {
    padding: 0 1rem !important;
    min-height: 4.25rem !important;
    max-height: 4.25rem !important;
    height: 4.25rem !important;
  }

  body header.site-header .brand {
    height: 4.25rem !important;
  }

  body header.site-header .brand-logo {
    width: 7.25rem !important;
    height: 7.25rem !important;
    max-width: 7.25rem !important;
    max-height: 7.25rem !important;
  }

  body header.site-header .nav-links {
    min-width: 0;
    gap: 0.5rem !important;
  }

  body header.site-header .nav-center {
    position: static !important;
    left: auto !important;
    transform: none !important;
    margin-inline: auto !important;
    gap: 0.125rem !important;
    flex-wrap: nowrap !important;
  }

  body header.site-header .nav-center a:not(.login-btn):not(.register-btn),
  body header.site-header .dropdown-toggle {
    padding: 0.625rem !important;
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    white-space: nowrap;
  }

  body header.site-header .nav-right {
    gap: 0.5rem !important;
    margin-left: 0.75rem !important;
  }

  body header.site-header .translate-trigger {
    padding: 0.5rem !important;
  }

  body header.site-header .translate-lang-label {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
  }

  body header.site-header .dropdown-menu {
    min-width: min(56rem, calc(100vw - 2rem)) !important;
    max-width: min(56rem, calc(100vw - 2rem)) !important;
  }

  body .container.section.reveal,
  body .container.section.faq {
    width: calc(100% - 2.5rem) !important;
    margin-inline: auto !important;
    box-sizing: border-box;
    padding: 3rem 1.25rem !important;
    overflow: hidden;
  }

  body .container.section.reveal .section-header,
  body .container.section.faq .section-header,
  body .container.section.reveal .why-choose-header,
  body .container.section.reveal .range-header,
  body .container.section.faq .range-header {
    max-width: 100% !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  body .container.section.reveal .section-header h2,
  body .container.section.faq .section-header h2,
  body .container.section.reveal .hero-heading,
  body .container.section.faq .hero-heading {
    display: block !important;
    width: 100%;
    margin-inline: auto !important;
    font-size: 1.5625rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    overflow-wrap: anywhere;
  }

  body .container.section.reveal .eyebrow,
  body .container.section.faq .eyebrow,
  body .container.section.reveal h3,
  body .container.section.reveal h4,
  body .container.section.faq h3,
  body .container.section.faq h4,
  body .container.section.faq .faq-card-btn > span:not(.faq-icon-box):not(.faq-chevron) {
    font-size: 0.9375rem !important;
    line-height: 1.2 !important;
    overflow-wrap: anywhere;
  }

  body .container.section.reveal h3,
  body .container.section.reveal h4,
  body .container.section.faq h3,
  body .container.section.faq h4 {
    text-align: center !important;
  }

  body .container.section.reveal p,
  body .container.section.reveal li,
  body .container.section.reveal a,
  body .container.section.reveal button,
  body .container.section.reveal input,
  body .container.section.reveal label,
  body .container.section.reveal .achievement-banner .inner span,
  body .container.section.faq p,
  body .container.section.faq li,
  body .container.section.faq a,
  body .container.section.faq button,
  body .container.section.faq input,
  body .container.section.faq label {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }


  body .container.section.reveal .why-choose-header h2,
  body .container.section.reveal .why-choose-header p,
  body .container.section.reveal .why-choose-lead,
  body .container.section.reveal .range-header h2,
  body .container.section.reveal .range-header p,
  body .container.section.faq .range-header h2,
  body .container.section.faq .range-header p {
    text-align: center !important;
    margin-inline: auto !important;
  }

  body .container.section.reveal .why-choose-pill-row {
    justify-content: center !important;
  }

  body .why-choose-shell,
  body .model-showcase-inner {
    grid-template-columns: 1fr !important;
  }

  body .why-choose-shell > *,
  body .why-choose-grid > *,
  body .index-products-grid > *,
  body .index-testimonials-grid > *,
  body .stats-grid-inner > *,
  body .faq-wrap > * {
    min-width: 0;
  }

  body .why-choose-grid,
  body .index-products-grid,
  body .index-testimonials-grid,
  body .stats-grid-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    padding: 0 !important;
  }

  body .achievement-banner .inner {
    gap: 0.75rem !important;
    justify-content: center !important;
  }

  body .achievement-banner .inner > div {
    justify-content: center !important;
    text-align: center !important;
  }

  body .index-products-grid img {
    width: 100%;
    height: min(32vw, 13rem) !important;
    object-fit: cover;} 
    body .index-products-grid {  grid-template-columns: repeat(2, 1fr) !important;}

  body .faq-wrap {
    width: 100%;
  }

  body .faq-card-btn {
    padding: 1rem !important;
    gap: 0.75rem !important;
    align-items: flex-start;
  }

  body .faq-card-btn span {
    min-width: 0;
  }

  body .faq-body p {
    padding: 0 1rem 1rem 1rem !important;
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
  }

  body footer .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 3rem 1.25rem 1.75rem !important;
    gap: 1rem !important;
  }

  body footer .footer-section {
    min-width: 0;
  }

  body footer .footer-section h3 {
    font-size: 0.9375rem !important;
    line-height: 1.2 !important;
  }

  body footer .footer-section p,
  body footer .footer-section ul li a,
  body footer .newsletter-form input,
  body footer .newsletter-form button,
  body footer .footer-bottom p,
  body footer .footer-bottom span,
  body footer .footer-bottom a {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    overflow-wrap: anywhere;
  }

  body footer .footer-bottom .row {
    padding: 1rem 1.25rem !important;
  }
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  body .site-header,
  body .site-header.solid {
    min-height: 4.5rem !important;
  }

  body .container.nav {
    padding: 0 0.875rem !important;
    min-height: 4.5rem !important;
    max-height: 4.5rem !important;
    height: 4.5rem !important;
  }

  body .brand {
    height: 4.5rem !important;
  }

  body .brand-logo {
    width: 7rem !important;
    height: 70px !important;
    max-width: 7rem !important;
    max-height: 70px !important;
  }

  body .mobile-header-right {
    gap: 0.5rem !important;
  }

  body .mobile-menu {
    width: 100% !important;
    max-height: calc(100vh - 4.5rem) !important;
    overflow-y: auto !important;
    padding: 1rem 0.875rem 1.25rem !important;
  }

  body .mobile-menu a,
  body .mobile-category a {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
  }

  body .mobile-category h4 {
    font-size: 0.7375rem !important;
    line-height: 1.2 !important;
  }

  body .container.section.reveal,
  body .container.section.faq {
    width: calc(100% - 1rem) !important;
    margin-inline: auto !important;
    box-sizing: border-box;
    padding: 1rem 0.3rem !important;
    overflow: hidden;
  }

  body .container.section.reveal .section-header,
  body .container.section.faq .section-header,
  body .container.section.reveal .why-choose-header,
  body .container.section.reveal .range-header,
  body .container.section.faq .range-header {
    max-width: 100% !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  body .container.section.reveal .section-header h2,
  body .container.section.faq .section-header h2,
  body .container.section.reveal .hero-heading,
  body .container.section.faq .hero-heading {
    display: block !important;
    width: 100%;
    margin-inline: auto !important;
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    overflow-wrap: anywhere;
  }

  body .container.section.reveal .eyebrow,
  body .container.section.faq .eyebrow,
  body .container.section.reveal h3,
  body .container.section.reveal h4,
  body .container.section.faq h3,
  body .container.section.faq h4,
  body .container.section.faq .faq-card-btn > span:not(.faq-icon-box):not(.faq-chevron) {
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
    overflow-wrap: anywhere;
  }

  body .container.section.reveal h3,
  body .container.section.reveal h4,
  body .container.section.faq h3,
  body .container.section.faq h4 {
    text-align: center !important;
  }

  body .container.section.reveal p,
  body .container.section.reveal li,
  body .container.section.reveal a,
  body .container.section.reveal button,
  body .container.section.reveal input,
  body .container.section.reveal label,
  body .container.section.reveal .achievement-banner .inner span,
  body .container.section.faq p,
  body .container.section.faq li,
  body .container.section.faq a,
  body .container.section.faq button,
  body .container.section.faq input,
  body .container.section.faq label {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  
  body .container.section.reveal .achievement-banner .inner span{
    font-size: 0.95rem !important;
  }

  body .container.section.reveal .why-choose-header h2,
  body .container.section.reveal .why-choose-header p,
  body .container.section.reveal .why-choose-lead,
  body .container.section.reveal .range-header h2,
  body .container.section.reveal .range-header p,
  body .container.section.faq .range-header h2,
  body .container.section.faq .range-header p {
    text-align: center !important;
    margin-inline: auto !important;
  }

  body .container.section.reveal .why-choose-pill-row {
    flex-wrap: nowrap !important;
    justify-content: center !important;
  }

  body .why-choose-shell,
  body .model-showcase-inner,
  body .why-choose-grid,
  body .index-products-grid,
  body .index-testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 0.875rem !important;
    padding: 0 !important;
  }

  body .stats-grid-inner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.875rem !important;
    padding: 0 !important;
  }

  body .why-choose-shell > *,
  body .why-choose-grid > *,
  body .index-products-grid > *,
  body .index-testimonials-grid > *,
  body .stats-grid-inner > *,
  body .faq-wrap > * {
    min-width: 0;
  }

  body .achievement-banner .glass-card {
    width: 100%;
  }
  .achievement-banner .inner > div > div:first-child{
    width: 10px !important;
    height:  10px !important;
  }

  body .achievement-banner .inner,
  body .achievement-banner .inner > div {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
  }

  body .index-products-grid img {
    width: 100%;
    height: 130px !important;
    object-fit: cover !important;
  }

  body .index-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 !important;
  }

  body .index-products-grid .glass-card {
    padding: 12px !important;
    display: flex;
    flex-direction: column;
  }

  body .index-products-grid h4 {
    font-size: 0.78rem !important;
    margin: 8px 0 4px !important;
    line-height: 1.3;
  }

  body .index-products-grid p {
    font-size: 0.7rem !important;
    margin: 0 0 8px !important;
    flex: 1;
  }

  body .index-products-grid .btn {
    font-size: 0.72rem !important;
    padding: 8px 6px !important;
    border-radius: 8px !important;
    margin-top: auto;
  }

  body .container.section.reveal .btn,
  body .container.section.faq .btn,
  body .container.section.reveal button,
  body .container.section.faq button {
    width: 100%;
    justify-content: center !important;
    white-space: normal;
  }

  body .faq-card-btn {
    padding: 1rem !important;
    gap: 0.75rem !important;
    align-items: flex-start;
  }

  body .faq-card-btn span {
    min-width: 0;
  }

  body .faq-chevron {
    margin-left: auto !important;
  }

  body .faq-body p {
    padding: 0 1rem 1rem !important;
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
  }

  body footer .footer-container {
    grid-template-columns: 1fr !important;
    padding: 2.5rem 0.875rem 1.5rem !important;
    gap: 0.875rem !important;
  }

  body footer .footer-section {
    padding: 1.25rem 1rem !important;
    text-align: center !important;
  }

  body footer .footer-section h3 {
    font-size: 0.9375rem !important;
    line-height: 1.2 !important;
  }

  body footer .footer-section p,
  body footer .footer-section ul li a,
  body footer .newsletter-form input,
  body footer .newsletter-form button,
  body footer .footer-bottom p,
  body footer .footer-bottom span,
  body footer .footer-bottom a {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    overflow-wrap: anywhere;
  }

  body footer .social-icons {
    justify-content: center !important;
  }

  body footer .footer-bottom .row {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1rem 0.875rem !important;
  }

  body footer .footer-bottom .col-md-6,
  body footer .footer-bottom .col-md-6:last-child {
    text-align: center !important;
  }
}
