* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #111;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  background: #081A33;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  border: none;
  background: #ffff;
  cursor: pointer;
}

.navbar {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 10px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover {
  background: #081A33;
  border-radius: 8px;
}

.caret {
  font-size: 14px;
}

/* ===== Dropdown Base ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #081A33;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 8px;
  display: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  z-index: 999;
}

/* Desktop Hover Only */
@media (min-width: 769px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
}
@media (max-width: 768px) {

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 1px solid #eee;
    margin-top: 6px;
    width: 100%;
    display: none;
  }

  .dropdown.open > .dropdown-menu {
    display: block;
  }

}


/* ===== Mobile Styles ===== */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #081A33;
    border-bottom: 1px solid #eee;
    display: none; /* hidden by default */
  }

  .navbar.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
  }

  /* Dropdown menu becomes inline for mobile */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 1px solid #eee;
    margin-top: 6px;
    width: 100%;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }
}

/* just demo spacing */
.section {
  padding: 60px 0;
}
/* end */

/* migraine-section.migraine-grid */
/* ===== Migraine Relief Section ===== */
.migraine-section {
  padding: 60px 0;
}

.migraine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.migraine-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

.migraine-content h2 {
  font-size: clamp(22px, 3.2vw, 38px);
  line-height: 1.2;
  margin-bottom: 10px;
}

.migraine-content p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 18px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  opacity: 0.9;
}

.badge {
  margin-top: 14px;
  display: inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f4f4f4;
  border: 1px solid #eee;
  font-size: 13px;
  font-weight: 600;
}

/* Mobile friendly */
@media (max-width: 768px) {
  .migraine-grid {
    grid-template-columns: 1fr;
  }

  .migraine-content {
    text-align: left;
  }
}
/* end */



/* <section class="featured" id="featured"> */
/* ===== Featured Collection Section ===== */
.featured {
  padding: 60px 0;
  background: #081a33;
}

.featured-title {
  text-align: center;
  color: #fff;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 30px;
}

/* Grid - Ready for 3 products */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 24px;
  justify-content: center;
}

/* Card (30% smaller look) */
.product-card {
  max-width: 320px;   /* reduced size */
  margin: 0 auto;     /* center if only 2 cards */
  text-decoration: none;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease;
  color: #111;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/* Image Area */
.product-media {
  position: relative;
  background: #f6f6f6;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 8px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Save badge */
.save-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #0c7c6c;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 50px;
}

/* Body */
.product-body {
  padding: 12px;
  text-align: center;
}

.product-name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.price-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: baseline;
}

.price {
  font-weight: 800;
  font-size: 14px;
}

.compare {
  font-size: 13px;
  color: red;
  text-decoration: line-through;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 992px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: 100%;
  }
}

/* Save badge */
.save-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0c7c6c;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

/* Body */
.product-body {
  padding: 14px 16px 18px;
  text-align: center;
}

.product-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #111;
  margin-bottom: 10px;
}

.price-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
}

.price {
  font-weight: 800;
  color: #111;
}

.compare {
  color: #d40000;
  font-weight: 700;
  text-decoration: line-through;
}

/* ===== Mobile Friendly ===== */
@media (max-width: 768px) {
  .featured {
    padding: 56px 0;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-body {
    padding: 12px 14px 16px;
  }

  .product-name {
    font-size: 13px;
  }
}

/* end */


/*  <section class="relief-features" id="relief-features">*/
/* ===== Relief Features (4 cards) ===== */
.relief-features {
  padding: 60px 0 70px;
  background: #fff;
}

.relief-title {
  text-align: center;
  font-size: clamp(26px, 3.4vw, 52px);
  font-weight: 900;
  color: #0b0b0b;
  margin-bottom: 36px;
}

.relief-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  align-items: stretch;
}

.relief-card {
  background: #0b1a33;            /* deep navy like screenshot */
  border-radius: 16px;
  padding: 26px 22px 30px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.relief-imgbox {
  width: 78%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 4px;             /* square-ish white box */
  display: grid;
  place-items: center;
  padding: 12px;
  margin-top: 6px;
}

.relief-imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.relief-text {
  margin-top: 22px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .relief-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .relief-card {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .relief-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .relief-card {
    min-height: auto;
    padding: 22px 18px 26px;
  }
  .relief-imgbox {
    width: 85%;
  }
  .relief-text {
    font-size: 18px;
  }
}

/* end */


/* <section class="testimonials" id="testimonials"> */
/* ===== Testimonials (Premium UI/UX) ===== */
.testimonials{
  padding: 80px 0 90px;
  background: #fff;
}

.t-title{
  text-align:center;
  font-size: clamp(28px, 3.2vw, 54px);
  font-weight: 900;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
  color:#0b0b0b;
}

.t-rating{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-bottom: 44px;
}

.t-rating .stars{
  font-size: 22px;
  letter-spacing: 4px;
  color:#0b1a33;
  transform: translateY(-1px);
}

.t-rating .score{
  font-weight: 800;
  font-size: 16px;
  color:#121212;
}

/* Wrapper */
.t-wrap{
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 14px;
}

/* Arrows (clean, modern) */
.t-arrow{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #e8e8e8;
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  display:grid;
  place-items:center;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.t-arrow:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.14);
}

.t-arrow:active{
  transform: translateY(0px) scale(0.98);
}

/* Viewport */
.t-viewport{
  overflow: hidden;
  padding: 10px 2px;
}

.t-track{
  display: flex;
  gap: 18px;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

/* Card */
.t-card{
  flex: 0 0 calc((100% - 36px) / 3);
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 26px 24px;
  text-align: center;
  border: 1px solid #f0f0f0;
  box-shadow:
    0 14px 40px rgba(0,0,0,0.08);
  transition: transform .18s ease, box-shadow .18s ease;
  min-height: 320px;

  display:flex;
  flex-direction: column;
  justify-content: center;
}

.t-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.11);
}

/* Head */
.t-head{
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  color:#0b0b0b;
}

/* Text */
.t-text{
  font-size: 17px;
  line-height: 1.8;
  color:#2a2a2a;
  margin-bottom: 16px;
}

/* Name */
.t-name{
  font-weight: 900;
  font-size: 17px;
  margin-top: 2px;
  color:#0b0b0b;
}

/* Stars in card */
.t-stars{
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: 4px;
  color:#0b1a33;
}

/* Muted (3rd one like screenshot, but still clean) */

/* ===== Responsive ===== */
@media (max-width: 1100px){
  .t-wrap{ grid-template-columns: 52px 1fr 52px; }
  .t-card{ flex: 0 0 calc((100% - 18px) / 2); }
}

@media (max-width: 768px){
  .t-wrap{ grid-template-columns: 46px 1fr 46px; gap: 10px; }
  .t-arrow{ width: 42px; height: 42px; font-size: 28px; }

  .t-card{
    flex: 0 0 100%;
    padding: 22px 16px 20px;
    min-height: auto;
    border-radius: 16px;
  }

  .t-head{ font-size: 20px; }
  .t-text{ font-size: 15px; }
  .t-name{ font-size: 15px; }
}

/* end */


/* <section class="brand-shines" id="brand-shines"> */
/* ===== Brand Shines Wave Section ===== */
.brand-shines {
  position: relative;
  background: #0b1a33;
  color: #fff;
  padding: 70px 0;
  overflow: hidden;
}

/* Wave strips */
.wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 120px;
  background: #FFFFFF;
  opacity: 0.95;
  z-index: 0;
}
.wave-top {
  top: -55px;
  border-bottom-left-radius: 80% 70px;
  border-bottom-right-radius: 80% 70px;
  transform: skewY(-2deg);
}
.wave-bottom {
  bottom: -55px;
  border-top-left-radius: 80% 70px;
  border-top-right-radius: 80% 70px;
  transform: skewY(2deg);
}

.container.brand-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Left side */
.brand-left h2 {
  font-size: clamp(28px, 3vw, 54px);
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.brand-left p {
  max-width: 520px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 26px;
}
.brand-btn {
  display: inline-block;
  background: #fff;
  color: #0b0b0b;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

/* Right compare table */
.compare-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 170px 170px;
  align-items: stretch;
  gap: 0;
}

/* left list */
.compare-list {
  background: #ececec;
  color: #111;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0,0,0,0.25);
  /* Added margin-top to align rows perfectly with the column headers */
  padding-top: 58px; 
}
.compare-list .row {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  font-weight: 500;
  display: flex;
  align-items: center;
  height: calc((100% - 58px) / 5); /* Evenly divide remaining height */
}
.compare-list .row:last-child {
  border-bottom: none;
}

/* columns */
.compare-col {
  text-align: center;
  display: grid;
  grid-template-rows: 58px repeat(5, 1fr);
  overflow: hidden;
  background: #ececec;
  box-shadow: 0 16px 45px rgba(0,0,0,0.25);
}
.compare-col.other {
  border-radius: 0 12px 12px 0;
}

/* heads */
.col-head {
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #0b1a33;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.other-head {
  background: transparent;
  color: #fff;
  font-weight: 700;
}

/* main column raised white card */
.compare-col.main {
  background: #fff;
  border-radius: 12px;
  margin-top: -26px;
  margin-bottom: -26px;
  z-index: 3;
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(0,0,0,0.08);
}
.compare-col.main .col-head {
  background: #ffffff;
}

/* cells */
.cell {
  display: grid;
  place-items: center;
  font-size: 34px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
}
.compare-col .cell:last-child {
  border-bottom: none;
}

.ok { color: #2ea31c; font-weight: 900; }
.no { color: #d95454; font-weight: 900; }

.compare-col.other {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(2px);
}
.compare-col.other .cell {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #d95454;
}
.compare-col.other .col-head {
  border-bottom: none;
}

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .container.brand-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .brand-shines { padding: 50px 0; }
  .wave { height: 85px; }
  
  /* Keep side-by-side desktop layout, just shrink dimensions */
  .compare-wrap {
    grid-template-columns: 1.2fr 90px 90px;
  }
  
  .compare-list {
    padding-top: 45px; /* adjust to new header height */
  }
  
  .compare-list .row {
    padding: 10px 12px;
    font-size: 13px;
    height: calc((100% - 45px) / 5);
  }

  .compare-col {
    grid-template-rows: 45px repeat(5, 1fr);
  }

  .col-head, .other-head {
    font-size: 12px;
  }

  .cell {
    font-size: 22px;
  }

  .compare-col.main {
    margin-top: -10px;
    margin-bottom: -10px;
    border-radius: 8px;
  }
}

/* end */


/* <section class="faq-section"> */
.faq-section {
  background: #0b1a33; /* Matching your brand-shines background */
  color: #fff;
  padding: 80px 0;
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin-bottom: 10px;
}

.faq-header p {
  color: rgba(255, 255, 255, 0.6);
}

/* Accordion Styles */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

details summary {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Custom arrow */
details summary::after {
  content: '+';
  font-size: 24px;
  color: #fff;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

details summary::-webkit-details-marker {
  display: none;
}

.faq-content {
  padding: 0 20px 20px 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
}

/* Message Box at bottom */
.faq-footer {
  text-align: center;
  margin-top: 40px;
  padding: 25px;
  background: #fff;
  color: #0b1a33;
  border-radius: 15px;
  font-weight: 600;
}

@media (max-width: 600px) {
  .faq-section { padding: 50px 0; }
  details summary { font-size: 16px; padding: 15px; }
  .faq-content { font-size: 14px; }
}
/* end */


/*  <footer class="site-footer">*/
.site-footer {
  background: #0b1a33; /* Matching your theme */
  color: #fff;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 1px;
}

.footer-links h3, .footer-contact h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links ul li a:hover {
  opacity: 1;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 20px;
  margin-top: 3px;
}

.contact-text p {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.9;
}

.contact-text span {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.7;
}

/* Mobile Friendly Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 30px;
  }
  
  .footer-brand h2 {
    margin-bottom: 10px;
  }
}
/* end */


/* <section class="product-detail"> */
/* ===== Main media box ===== */
.main-media{
  width: 100%;
  aspect-ratio: 1 / 1;      /* 540x540 feel */
  background: #f4f4f4;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.main-media img,
.main-media video{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== Thumbnail slider ===== */
.thumb-slider{
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.thumb-nav{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #e6e6e6;
  background: #fff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.thumb-viewport{
  overflow: hidden;
}

.thumb-track{
  display: flex;
  gap: 10px;
  transition: transform 0.35s ease;
  will-change: transform;
}

/* thumb item */
.thumb-item{
  border: 2px solid transparent;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 78px;
  height: 78px;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 auto;
  position: relative;
}

.thumb-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-item.active{
  border-color: #0b1a33;
}

/* video thumb badge */
.thumb-item.video .play-badge{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #fff;
  background: rgba(0,0,0,0.25);
}

/* Mobile tweaks */
@media (max-width: 900px){
  .thumb-slider{
    grid-template-columns: 40px 1fr 40px;
  }
  .thumb-item{
    width: 64px;
    height: 64px;
  }
  .thumb-nav{
    width: 40px;
    height: 40px;
  }
}
/* ===== Product Detail ===== */
.product-detail {
  padding: 60px 0;
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* LEFT */
.main-image {
  width: 100%;
  aspect-ratio: 1/1;
  background: #f4f4f4;
  border-radius: 16px;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumb-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumb.active {
  border: 2px solid #0b1a33;
}

/* RIGHT */
.product-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 14px;
}

.rating {
  color: #f5b301;
  font-size: 16px;
  margin-bottom: 14px;
}

.rating span {
  color: #555;
  font-weight: 500;
  margin-left: 8px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.price {
  font-size: 22px;
  font-weight: 900;
}

.old-price {
  text-decoration: line-through;
  color: #999;
}

.save {
  background: #0c7c6c;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 700;
}

.features {
  margin-bottom: 24px;
}

.features li {
  margin-bottom: 10px;
  font-size: 15px;
}

.buy-btn {
  background: #000;
  color: #fff;
  padding: 14px 26px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  margin-bottom: 20px;
}

/* VIDEO */
.product-video video {
  width: 100%;
  border-radius: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-title {
    font-size: 22px;
  }

  .thumb {
    width: 60px;
    height: 60px;
  }
}

/* end */


/*  */
.why-section {
    padding: 80px 0;
    background: #fff;
    color: #000;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal split for text and image */
    gap: 40px;
    align-items: center;
    padding: 0 20px;
}

/* Left Text Content */
.why-text h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center; /* Matching the centered title in the image */
}

.why-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center; /* Matching the centered text in the image */
    color: #111;
}

/* Right Image Content */
.why-image-box {
    width: 100%;
    position: relative;
}

.why-image-box img {
    width: 100%;
    height: auto;
    border-radius: 20px; /* Matching the rounded corners in the image */
    display: block;
}

/* Responsive for Mobile */
@media (max-width: 991px) {
    .why-container {
        grid-template-columns: 1fr; /* Stack on mobile */
        text-align: center;
    }
    
    .why-text h2 {
        font-size: 28px;
    }
}
/* end */
/* <section class="page-001"> */
.page-001 {
  padding: 60px 0;
  background: #fdfdfd;
  color: #333;
  font-family: 'Inter', sans-serif;
}

.page-001-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-001-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-001-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0b1a33;
}

/* Accordion Logic */
.page-001-item {
  border-bottom: 1px solid #e5e5e5;
}

.page-001-trigger {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #0b1a33;
  text-align: left;
  transition: color 0.3s;
}

.page-001-trigger:hover {
  color: #5b6472;
}

.page-001-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  color: #666;
  line-height: 1.6;
}

.page-001-content p {
  padding-bottom: 20px;
}

.page-001-icon {
  font-size: 20px;
  transition: transform 0.3s;
}

/* Active Class for JS */
.page-001-item.active .page-001-content {
  max-height: 500px;
  padding-top: 10px;
}

.page-001-item.active .page-001-icon {
  transform: rotate(45deg);
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .page-001-header h2 { font-size: 24px; }
  .page-001-trigger { font-size: 16px; }
  .page-001-content { font-size: 14px; }
}

/* end */

/*  <section class="page-001-trust-section"> */
.page-001-trust-section {
    padding: 40px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #eeeeee;
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Shipping Notice */
.shipping-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 18px;
    color: #0b1a33;
}

/* Icon Styling */
.icon-svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #0b1a33;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Trust Badges Grid */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.badge-icon-wrap {
    background: #f4f7fa;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    font-size: 18px;
    font-weight: 600;
    color: #0b1a33;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .shipping-notice {
        font-size: 16px;
        justify-content: center;
    }
}

/* end */

/* <section class="clinical-trials-section"> */
.clinical-trials-section {
    background-color: #0b1a33;
    color: #ffffff;
    padding: 100px 20px;
    position: relative;
    font-family: 'Inter', sans-serif; /* Using a clean sans-serif like the image */
    overflow: hidden;
}

/* Custom Wave Shapes using pseudo-elements */
.clinical-trials-section::before,
.clinical-trials-section::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    z-index: 1;
}

/* Top Wave Curve */
.clinical-trials-section::before {
    top: 0;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
}

/* Bottom Wave Curve */
.clinical-trials-section::after {
    bottom: 0;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
}

.trials-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.trials-container h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.trials-container p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.trials-source {
    font-style: italic;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .clinical-trials-section {
        padding: 80px 20px;
    }
    .clinical-trials-section::before,
    .clinical-trials-section::after {
        height: 40px;
    }
}
/* end */


/* <section class="brand-shines" id="brand-shines"> */
.trust-badges-v2 {
    padding: 50px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.badges-container-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    gap: 30px;
}

.badge-card-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-icon-v2 {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Icon Styling */
.badge-icon-v2 svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #000;
    stroke-width: 1.5;
}

.badge-title-v2 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.2px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .badges-container-v2 {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid on tablets */
        gap: 40px 20px;
    }
}

@media (max-width: 480px) {
    .badges-container-v2 {
        grid-template-columns: 1fr; /* Stack on small phones */
        gap: 35px;
    }
    .badge-title-v2 {
        font-size: 15px;
    }
}
/* end */

/*  */
.performance-resolve {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.perf-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 540px; /* Right column fixed to your image width */
    gap: 40px;
    align-items: center;
    padding: 0 20px;
}

/* Left Content */
.perf-content {
    text-align: center; /* Centered text as per the image */
}

.perf-content h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #000;
}

.perf-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

/* Right Image */
.perf-image-wrapper {
    width: 540px;
    height: 540px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.perf-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .perf-container {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 30px;
    }

    .perf-image-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1; /* Keeps it square like 540x540 */
        max-width: 540px;
        margin: 0 auto;
    }
}
/* end */

/* ===== QUANTITY SELECTOR STYLES ===== */
.quantity-section {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.quantity-section label {
    font-size: 16px;
    color: #333;
    min-width: 80px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #081A33;
    color: white;
}

.qty-btn:active {
    transform: scale(0.95);
}

#quantity {
    width: 60px;
    height: 45px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    background: white;
    outline: none;
}

.total-price-section {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #081A33;
}

.total-label {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.total-price {
    font-size: 24px;
    font-weight: bold;
    color: #081A33;
}

/* Enhanced Buy Button - Blue with White Text */
.buy-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.buy-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Payment Button - Blue with White Text */
.payment-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    margin-top: 20px;
}

.payment-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* ===== THANK YOU PAGE STYLES ===== */
.thankyou-section {
    padding: 60px 0;
    min-height: 80vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thankyou-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-icon circle {
    stroke: #28a745;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-linecap: round;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-icon path {
    stroke: #28a745;
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.thankyou-container h1 {
    font-size: 36px;
    color: #081A33;
    margin-bottom: 15px;
}

.success-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.order-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.order-details h2 {
    color: #081A33;
    margin-bottom: 20px;
    text-align: center;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    color: #081A33;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    text-align: center;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.step-item h3 {
    color: #081A33;
    margin-bottom: 10px;
}

.step-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #081A33;
    color: white;
}

.btn-secondary {
    background: white;
    color: #081A33;
    border: 2px solid #081A33;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.support-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.support-info h3 {
    color: #081A33;
    margin-bottom: 15px;
}

.support-info p {
    margin: 8px 0;
    color: #666;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .thankyou-container {
        padding: 30px 20px;
    }
    
    .thankyou-container h1 {
        font-size: 28px;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== PHONE PE PAYMENT MODAL STYLES ===== */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.payment-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.payment-header h3 {
    color: #081A33;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.payment-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.amount-display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.amount-label {
    font-weight: 500;
    color: #666;
}

.amount-value {
    font-size: 24px;
    font-weight: bold;
    color: #081A33;
}

.transaction-id {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tid-label {
    font-weight: 500;
    color: #666;
}

.tid-value {
    font-family: monospace;
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 12px;
}

.payment-methods h4 {
    color: #081A33;
    margin-bottom: 20px;
    text-align: center;
}

.payment-option {
    margin-bottom: 15px;
}

.payment-btn {
    width: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    margin-bottom: 15px;
}

.payment-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.payment-icon {
    font-size: 28px;
    width: 35px;
    text-align: center;
    filter: brightness(0) invert(1); /* Makes icons white */
}

.payment-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.payment-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
}

.payment-subtitle {
    font-size: 14px;
    opacity: 0.9;
    font-weight: normal;
}

/* PhonePe Main Button */
.phonepe-main-btn {
    background: linear-gradient(135deg, #5f259f, #4a1d7c);
    border: 2px solid #5f259f;
}

.phonepe-main-btn:hover {
    background: linear-gradient(135deg, #4a1d7c, #361459);
    box-shadow: 0 6px 20px rgba(95, 37, 159, 0.4);
}

/* Manual Backup Button */
.manual-backup-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: 2px solid #007bff;
}

.manual-backup-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Payment Security Info */
.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 10px;
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border-radius: 8px;
    border: 1px solid #c3e6cb;
}

.security-icon {
    font-size: 18px;
}

.security-text {
    color: #155724;
    font-weight: 600;
    font-size: 14px;
}

.payment-note {
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
    text-align: center;
}

.confirm-payment-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.confirm-payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #218838, #1e7e34);
}

.payment-footer {
    margin-top: 25px;
    text-align: center;
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
}

/* ===== CHECKOUT PAGE STYLES ===== */
.checkout-section {
    padding: 40px 0;
    min-height: 80vh;
    background: #f9f9fa;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.order-summary {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.order-summary h2 {
    margin-bottom: 25px;
    color: #081A33;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}

.product-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.product-details h3 {
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.product-details p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.price-breakdown {
    margin-top: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.total-row {
    border-top: 2px solid #081A33;
    padding-top: 15px;
    margin-top: 15px;
    font-weight: bold;
    font-size: 20px;
    color: #081A33;
}

.customer-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.customer-form h2 {
    margin-bottom: 30px;
    color: #081A33;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.form-group input[required]:valid {
    border-color: #28a745;
    background: #f8fff9;
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
    background: #fff8f8;
}

/* Payment Button Enhanced */
.payment-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.payment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.payment-btn:hover::before {
    left: 100%;
}

.payment-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
}

.payment-btn:active {
    transform: translateY(-1px);
    transition: transform 0.1s;
}

/* ===== CHECKOUT RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .order-summary {
        position: static;
        order: 2;
    }
    
    .customer-form {
        order: 1;
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 20px 0;
    }
    
    .checkout-container {
        padding: 0 15px;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .order-summary,
    .customer-form {
        padding: 25px 20px;
    }
    
    .order-summary h2,
    .customer-form h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .payment-btn {
        padding: 18px 30px;
        font-size: 16px;
    }
    
    .product-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .product-image {
        width: 120px;
        height: 120px;
    }
}

/* Manual UPI Modal */
.manual-upi-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

.manual-upi-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.manual-upi-content h3 {
    color: #081A33;
    margin-bottom: 25px;
    text-align: center;
}

.upi-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.upi-field {
    margin-bottom: 15px;
}

.upi-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.copy-field {
    display: flex;
    gap: 10px;
}

.copy-field input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: monospace;
}

.copy-field button {
    padding: 10px 20px;
    background: #081A33;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.copy-field button:hover {
    background: #0f2749;
}

.manual-instructions {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ffeaa7;
    margin-bottom: 25px;
}

.manual-instructions p {
    margin-bottom: 15px;
    font-weight: 600;
    color: #856404;
}

.manual-instructions ol {
    margin-left: 20px;
    color: #856404;
}

.manual-instructions li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.manual-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.confirm-manual-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-manual-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-manual-btn:hover, .cancel-manual-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Payment Instructions */
.payment-instructions {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10002;
    text-align: center;
}

.instruction-content h4 {
    color: #081A33;
    margin-bottom: 15px;
}

.instruction-content p {
    color: #666;
    margin-bottom: 20px;
}

.ok-btn {
    background: #081A33;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-content {
        padding: 20px;
        margin: 10px;
    }
    
    .manual-upi-content {
        padding: 20px;
        margin: 10px;
    }
    
    .manual-actions {
        grid-template-columns: 1fr;
    }
    
    .copy-field {
        flex-direction: column;
    }
    
    .payment-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* ===== QR CODE MODAL STYLES ===== */
.qr-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  backdrop-filter: blur(5px);
}

.qr-content {
  background: white;
  border-radius: 15px;
  max-width: 450px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideInFromBottom 0.3s ease-out;
}

.qr-header {
  background: linear-gradient(135deg, #081A33, #1e3a8a);
  color: white;
  padding: 20px;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qr-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.close-qr {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-qr:hover {
  background: rgba(255, 255, 255, 0.2);
}

.qr-body {
  padding: 30px;
  text-align: center;
}

.qr-code-container {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  display: inline-block;
}

#qrcode {
  margin: 0 auto;
}

.qr-fallback {
  background: #f0f0f0;
  padding: 15px;
  border-radius: 8px;
  border: 2px dashed #ccc;
}

.qr-instructions {
  text-align: left;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.qr-instructions h4 {
  margin: 0 0 15px 0;
  color: #081A33;
  font-size: 1.1rem;
}

.qr-instructions ol {
  margin: 15px 0;
  padding-left: 20px;
}

.qr-instructions li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.qr-amount {
  background: #e3f2fd;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.qr-footer {
  padding: 20px 30px;
  border-top: 1px solid #eee;
  background: #f8f9fa;
  border-radius: 0 0 15px 15px;
}

.payment-done-qr {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.payment-done-qr:hover {
  background: linear-gradient(135deg, #388e3c, #4caf50);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.qr-note {
  text-align: center;
  margin: 10px 0 0 0;
  font-size: 0.9rem;
  color: #666;
}

/* ===== ENHANCED UPI APP BUTTONS ===== */
.payment-option-header {
  background: #f0f8ff;
  padding: 12px 15px;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
  color: #081A33;
  border-bottom: 1px solid #e0e0e0;
}

.upi-app-buttons {
  display: flex;
  gap: 10px;
  padding: 15px;
  background: white;
  border-radius: 0 0 8px 8px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.upi-app-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px 10px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

.upi-app-btn:hover {
  border-color: #4a90e2;
  background: #f0f8ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.upi-app-btn.phonepe:hover {
  border-color: #5f259f;
  background: #f8f4ff;
}

.upi-app-btn.gpay:hover {
  border-color: #4285f4;
  background: #f0f8ff;
}

.upi-app-btn.paytm:hover {
  border-color: #00baf2;
  background: #f0faff;
}

.app-logo {
  font-size: 24px;
}

.app-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

/* ===== PAYMENT METHODS ENHANCEMENT ===== */
.payment-option.upi-apps {
  margin-bottom: 20px;
}

.qr-btn {
  background: linear-gradient(135deg, #ff9800, #ff5722);
}

.qr-btn:hover {
  background: linear-gradient(135deg, #f57c00, #d84315);
}

/* ===== QR CODE RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .upi-app-buttons {
    flex-direction: column;
  }
  
  .upi-app-btn {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    padding: 12px 15px;
  }
  
  .qr-content {
    width: 95%;
    margin: 10px;
  }
  
  .qr-body {
    padding: 20px;
  }
}