/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --navy: #0a2a44;
  --navy-light: #1d3b5c;
  --teal: #2ac9b4;
  --teal-dark: #1ea396;
  --gray-light: #f0f7fc;
  --white: #ffffff;
  --shadow-sm: 0 15px 35px -10px rgba(10, 42, 68, 0.1);
  --shadow-hover: 0 25px 45px -12px rgba(10, 42, 68, 0.2);
  --transition: all 0.3s ease;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--navy);
  background-color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  color: #4a5f73;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

.teal-accent {
  color: var(--teal);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--navy);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 60px;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
}

.btn i {
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.btn:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn:hover i {
  transform: translateX(5px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.ab:hover {
  background: var(--white);
  color: var(--navy) !important;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  position: fixed;
  top: 0;
  z-index: 10000;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 24px;
}

.logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.logo img{
  height: 60px;
}

.footer-col .logo{
  justify-content: start;
  margin-bottom: 20px;
}

.logo span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--teal);
  background: rgba(42, 201, 180, 0.1);
  padding: 4px 8px;
  border-radius: 40px;
  margin-left: 10px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--navy);
  cursor: pointer;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 280px;
  max-height: 600px;
  overflow-y: auto;
  box-shadow: var(--shadow-hover);
  border-radius: 16px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  z-index: 10;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  color: var(--navy);
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: var(--gray-light);
  color: var(--teal);
  padding-left: 30px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 1000px) {
  .hamburger {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 140px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
    gap: 16px;
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 99;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 20px;
    max-height: 0;
    overflow-y: auto;
    /* overflow: hidden; */
    transition: max-height 0.3s ease;
    background: transparent;
  }
  .nav-item.open .dropdown-menu {
    max-height: 400px;
  }
  .dropdown-menu li a {
    padding: 12px 0;
  }
  .dropdown-menu li a:hover {
    background: transparent;
    padding-left: 10px;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, var(--gray-light) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42, 201, 180, 0.1);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat h4 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 5px;
}

.stat p {
  color: #5f7d9c;
  font-size: 0.95rem;
  margin: 0;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: var(--shadow-hover);
  transition: var(--transition);
}

.hero-media img:hover {
  transform: scale(1.02);
}

.floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 20px 25px;
  border-radius: 24px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 280px;
  border: 1px solid rgba(42, 201, 180, 0.2);
}

.floating-card i {
  color: var(--teal);
  font-size: 2rem;
  opacity: 0.8;
}

.floating-card span {
  font-weight: 500;
  color: var(--navy);
  font-style: italic;
}

@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .floating-card {
    bottom: -10px;
    left: 10px;
  }
}

/* ===== QUOTE BANNER ===== */
.quote-block {
  background:
    linear-gradient(rgba(10, 42, 68, 0.8), rgba(10, 42, 68, 0.9)),
    url("https://images.unsplash.com/photo-1580281657527-47c0f4d94a40?q=80&w=2070&auto=format&fit=crop")
      center/cover fixed;
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-block .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.quote-block i {
  color: var(--teal);
}

/* ===== PRODUCT CATEGORIES ===== */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--gray-light);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.category-card {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-img {
  height: 240px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s;
}

.category-card:hover .card-img img {
  transform: scale(1.1);
}

.card-content {
  padding: 30px 25px;
}

.product-list {
  list-style: none;
  margin-top: 20px;
}

.product-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #2d4f6c;
}

.product-list i {
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-hover);
  transition: var(--transition);
}

.about-img img:hover {
  transform: rotate(1deg) scale(1.02);
}

@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================= */
/* ===== CTA ===== */
.cta-premium {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.cta-premium h2 {
  color: var(--navy);
}

.cta-premium p {
  color: var(--navy);
  opacity: 0.8;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--teal);
  font-size: 1rem;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 40px;
  margin-left: 8px;
}

.footer-col p {
  color: #b0c4de;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--teal);
  transform: translateY(-3px);
}

.footer-col h4 {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #b0c4de;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--teal);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b0c4de;
  font-size: 0.9rem;
}

/* Footer Logo */
.ag-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.ag-logo-img {
  height: 45px;
  width: auto;
}

.ag-logo-text-box {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.ag-logo-name {
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.ag-logo-tagline {
  font-size: 11px;
  color: #2ac9b4;
  letter-spacing: 0.5px;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== UTILITIES ===== */
img {
  max-width: 100%;
  display: block;
}

/* ----------------------- */

/* ---------------------------------- */
.ss-parts-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 80px 8%;
  background: #f8f8f8;
}

.part-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.part-item img {
  width: 100%;
  transition: 0.4s;
  object-fit: contain !important;
}

.part-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.part-item:hover img {
  transform: scale(1.05);
}

/* POPUP */

.ss-popup {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
}

.popup-box img {
  width: 220px;
  margin: auto;
  margin-bottom: 20px;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 30px;
  cursor: pointer;
}
.popup-box {
  animation: ssPartsScale 0.3s ease;
}
#ssPartsPopupTitle {
  margin-bottom: 20px;
}

@keyframes ssPartsScale {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.ss-parts-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
  padding: 80px 8%;
  background: #f8f8f8;
}

/* items */

.part-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  background: #fff;
}

.part-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.4s;
}

/* asymmetric sizes */

.part-item.wide {
  grid-column: span 2;
}

.part-item.tall {
  grid-row: span 2;
}

/* hover effect */

.part-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.part-item:hover img {
  transform: scale(1.08);
}
@media (max-width: 900px) {
  .ss-parts-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .part-item.wide {
    grid-column: span 2;
  }
  .popup-box img {
    width: 120px;
    margin: auto;
    margin-bottom: 20px;
  }

  .part-item.tall {
    grid-row: span 1;
  }
}
.part-item::after {
  content: attr(data-name);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;

  /* NEW GRADIENT */
  background: #0a2a44;

  color:#2ac9b4;
  font-size: 18px;
  opacity: 0;
  transition: 0.4s;
}

.part-item:hover::after {
  opacity: 1;
}.popup-contact-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 26px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}

.popup-contact-btn:hover {
  background: #084ec1;
  transform: translateY(-2px);
}
/* -------------------------------------------- */
/* =====================
AG SCROLL BANNER
===================== */

.ag-banner-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.ag-banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ag-banner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size:100% 100%;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}


.ag-banner-bg h2 {
  position: relative;
  color: white;
  font-size: clamp(2rem, 5vw, 5rem);
  text-align: center;
  max-width: 900px;
  padding: 20px;
}
/* banner content */

.ag-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  padding: 20px;
  color: white;
}

.ag-banner-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.ag-banner-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.ag-banner-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e6eef7;
}

/* buttons */

.ag-banner-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.ag-btn-primary {
  background: #2ac9b4;
  color: #0a2a44;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.ag-btn-primary:hover {
  background: #1ea396;
  transform: translateY(-3px);
}

.ag-btn-outline {
  border: 2px solid white;
  color: white;
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
}

.ag-btn-outline:hover {
  background: white;
  color: #0a2a44;
}
.ag-banner-wrapper {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* ==========================
ORTHO MARQUEE SECTION
========================== */

.ag-marquee {
  background: #0a2a44;
  overflow: hidden;
  padding: 25px 0;
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marqueeMove 30s linear infinite;
}

.marquee-track span {
  font-size: 22px;
  font-weight: 600;
  color: #2ac9b4;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

/* separator dot */

.marquee-track span::after {
  content: "•";
  margin-left: 60px;
  color: white;
  opacity: 0.6;
}

/* animation */

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ====================
STATS SECTION
==================== */

.ag-stats {
  background: #0a2a44;
  color: white;
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-box h2 {
  font-size: 40px;
  color: #2ac9b4;
  margin-bottom: 5px;
}

.stat-box p {
  color: #cfd9e3;
  font-size: 14px;
}

/* mobile */

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
/* ---------------------------------- */
/* ===========================
RECOVERY + BENEFITS COMBINED
=========================== */

.ag-recovery-benefits {
  background: #f7fafc;
  padding: 70px 0;
}

.rb-title {
  text-align: center;
  margin-bottom: 50px;
}

.rb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT STEPS */

.rb-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.rb-step {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.rb-step i {
  width: 40px;
  height: 40px;
  background: #2ac9b4;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
}

.rb-step h4 {
  margin-bottom: 4px;
  font-size: 16px;
}

.rb-step p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* RIGHT IMAGES */

.rb-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.rb-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 140px;
}

.rb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.rb-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  font-size: 14px;
}

.rb-card:hover img {
  transform: scale(1.08);
}

/* mobile */

@media (max-width: 900px) {
  .rb-grid {
    grid-template-columns: 1fr;
  }

  .rb-images {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .rb-images {
    grid-template-columns: 1fr;
  }
}
/* =====================
TOP CONTACT BAR
===================== */

.topbar {
  background: #0a2a44;
  color: white;
  font-size: 14px;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.topbar span {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.topbar i {
  color: #2ac9b4;
  font-size: 13px;
}

/* MOBILE */

@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    text-align: center;
  }

  .topbar-left {
    flex-direction: column;
    gap: 6px;
  }

  .topbar-right {
    display: none; /* hide location on small screens */
  }
}

.view-product-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: #1aa89e;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-product-btn:hover {
  background: #14867e;
  transform: translateY(-2px);
}

/* ------------------------------------------------------------------------------------------ */

/* === Refined Product Page - Lumbar Sacral Belt === */

/* Subtle background */
.bg-subtle {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
  pointer-events: none;
}

.bg-subtle div {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #0a2463;
  filter: blur(120px);
}

.bg-subtle div:nth-child(1) {
  top: -100px;
  right: -100px;
  background: #ff6b35;
}

.bg-subtle div:nth-child(2) {
  bottom: -100px;
  left: -100px;
  background: #0a2463;
}

.product-page {
  max-width: 1280px;
  margin: 1.5rem auto 3rem;
  padding: 0 1.5rem;
  position: relative;
  margin-top: 150px;
}

/* === HERO BANNER - WITH PRODUCT IMAGE === */
.product-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  background: linear-gradient(135deg, #0a2463 0%, #1e3c72 100%);
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 20px 30px -15px rgba(10, 36, 99, 0.4);
}

.banner-content {
  padding: 3rem 2.5rem;
  color: white;
}

.badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.2);
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.banner-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.banner-tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.banner-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.banner-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
}

.banner-features i {
  color: #ffb347;
}

.banner-image {
  position: relative;
  overflow: hidden;
  height: 500px;
  background: linear-gradient(45deg, #ff6b35, #ff8c5a);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.banner-image img {
  width: 100%;
  max-width: 320px;
  height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* === INTRODUCTION SECTION === */
.intro-section {
  background: white;
  border-radius: 1.8rem;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
}

.intro-section p {
  font-size: 1rem;
  color: #334155;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.intro-section p:last-child {
  margin-bottom: 0;
}

/* === WHY LUMBAR SUPPORT MATTERS (with Product Overview integrated) === */
.importance-section {
  background: white;
  border-radius: 1.8rem;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
}

.importance-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.importance-header i {
  font-size: 1.8rem;
  color: #ff6b35;
  background: #fff0e6;
  padding: 0.8rem;
  border-radius: 1.2rem;
}

.importance-header h2 {
  font-size: 1.6rem;
  color: #0a2463;
  font-weight: 600;
}

.importance-text {
  font-size: 1rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* Product Overview data integrated here */
.overview-integrated {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid #ff6b35;
}

.overview-integrated p {
  font-size: 1rem;
  color: #1e293b;
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.overview-integrated p:last-child {
  margin-bottom: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.benefit-pill {
  background: #f1f5f9;
  padding: 1rem 1.2rem;
  border-radius: 3rem;
  font-size: 0.95rem;
  color: #0a2463;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.2s;
}

.benefit-pill i {
  color: #ff6b35;
  font-size: 1.1rem;
}

.benefit-pill:hover {
  background: #0a2463;
  color: white;
  transform: translateX(5px);
}

.benefit-pill:hover i {
  color: white;
}

/* === COMBINED KEY FEATURES & BENEFITS SECTION === */
.combined-section {
  background: white;
  border-radius: 1.8rem;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
}

.combined-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.combined-header i {
  font-size: 1.8rem;
  color: #0a2463;
  background: #e6edf8;
  padding: 0.8rem;
  border-radius: 1.2rem;
}

.combined-header h2 {
  font-size: 1.6rem;
  color: #0a2463;
  font-weight: 600;
}

.combined-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.features-column h3,
.benefits-column h3 {
  font-size: 1.3rem;
  color: #0a2463;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.features-column h3 i,
.benefits-column h3 i {
  color: #ff6b35;
  font-size: 1.2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 1.2rem;
  transition: all 0.2s;
}

.feature-item:hover {
  background: #fff0e6;
  transform: translateX(5px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  font-size: 1.2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

.feature-content h4 {
  font-size: 1.1rem;
  color: #0a2463;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.feature-content p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem 1rem;
  background: #f8fafc;
  border-radius: 1rem;
  font-size: 0.95rem;
  color: #1e293b;
  transition: all 0.2s;
}

.benefits-list li:hover {
  background: #0a2463;
  color: white;
  transform: translateX(5px);
}

.benefits-list li i {
  color: #ff6b35;
  font-size: 1rem;
  width: 20px;
}

.benefits-list li:hover i {
  color: white;
}

/* === SUITABLE FOR SECTION === */
.suitability-section {
  background: white;
  border-radius: 1.8rem;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
}

.suitability-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.suitability-header i {
  font-size: 1.8rem;
  color: #ff6b35;
  background: #fff0e6;
  padding: 0.8rem;
  border-radius: 1.2rem;
}

.suitability-header h2 {
  font-size: 1.6rem;
  color: #0a2463;
  font-weight: 600;
}

.suitability-sub {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px dashed #e2e8f0;
}

.suitability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.suitability-card {
  background: #f8fafc;
  padding: 1.2rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
}

.suitability-card i {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  font-size: 1.1rem;
}

.suitability-card span {
  font-size: 0.95rem;
  color: #1e293b;
  font-weight: 500;
}

.suitability-card:hover {
  background: #0a2463;
  transform: translateY(-3px);
}

.suitability-card:hover i {
  background: #ff6b35;
  color: white;
}

.suitability-card:hover span {
  color: white;
}

/* === APPLICATIONS SECTION === */
.applications-section {
  background: white;
  border-radius: 1.8rem;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
}

.applications-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.applications-header i {
  font-size: 1.8rem;
  color: #0a2463;
  background: #e6edf8;
  padding: 0.8rem;
  border-radius: 1.2rem;
}

.applications-header h2 {
  font-size: 1.6rem;
  color: #0a2463;
  font-weight: 600;
}

.applications-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.applications-text p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.applications-list {
  list-style: none;
}

.applications-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #f8fafc;
  border-radius: 1rem;
  font-size: 0.95rem;
}

.applications-list li i {
  color: #ff6b35;
  font-size: 0.9rem;
}

.applications-image {
  border-radius: 1.5rem;
  overflow: hidden;
  height: 250px;
}

.applications-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* === MANUFACTURER/SUPPLIER/EXPORTER SECTION === */
.trust-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.trust-card {
  background: white;
  border-radius: 1.8rem;
  padding: 2rem;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
  transition: all 0.2s;
}

.trust-card:hover {
  transform: translateY(-5px);
  border-color: #ff6b35;
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: #fff0e6;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.trust-card h3 {
  font-size: 1.2rem;
  color: #0a2463;
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.trust-card p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.trust-badge {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.3rem 1rem;
  background: #0a2463;
  color: white;
  border-radius: 2rem;
}

/* === PRACTICAL SUPPORT SECTION === */
.practical-section {
  background: white;
  border-radius: 1.8rem;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
  text-align: center;
}

.practical-section h2 {
  font-size: 1.6rem;
  color: #0a2463;
  margin-bottom: 1.2rem;
}

.practical-section p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.practical-quote {
  font-size: 1.1rem;
  color: #ff6b35;
  font-style: italic;
  margin-top: 1.5rem;
  padding: 1rem;
  border-top: 2px dashed #e2e8f0;
  border-bottom: 2px dashed #e2e8f0;
}

/* Responsive */
@media (max-width: 900px) {
  .product-banner {
    grid-template-columns: 1fr;
  }

  .combined-grid,
  .applications-content,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .banner-image {
    min-height: 250px;
  }

  .banner-image img {
    max-width: 220px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .product-page {
    padding: 0 1rem;
  }

  .banner-content {
    padding: 2rem 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* === INTRO GALLERY SECTION STYLES === */
.intro-gallery-section {
  background: #ffffff;
  border-radius: 1.8rem;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
}

.gallery-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.gallery-text {
  padding-right: 1rem;
}

.gallery-heading {
  font-size: 1.6rem;
  color: #0a2463;
  margin-bottom: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.gallery-text p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.gallery-text p:last-child {
  margin-bottom: 0;
}

.gallery-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image-container {
  width: 100%;
  height: 300px;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #f1f5f9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.main-image:hover {
  transform: scale(1.02);
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.thumbnail {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 1rem;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.2s ease;
  background: #f1f5f9;
}

.thumbnail:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(10, 36, 99, 0.1);
}

.thumbnail.active {
  border-color: #ff6b35;
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-text {
    padding-right: 0;
  }

  .main-image-container {
    height: 250px;
  }

  .thumbnail {
    height: 70px;
  }
}

@media (max-width: 600px) {
  .intro-gallery-section {
    padding: 1.5rem;
  }

  .gallery-heading {
    font-size: 1.4rem;
  }

  .thumbnail-row {
    gap: 0.5rem;
  }

  .thumbnail {
    height: 60px;
  }
}
