@media (max-width: 600px) {
  body {
    font-size: 0.92em;
  }
}
/* ===========================================================
   Root Variables
   =========================================================== */
:root {
  --color-bg: #f7faff;
  --color-text: #33343a;
  --color-heading: #2d3a4a;
  --color-accent: #7e8fa6;
  --color-maroon-red: #8b0000;
  --color-banner: #1e88e5;
  --color-accent-green: #2eccb8;
  --color-gray: #d3dae6;
  --color-light: #ffffff;
  --color-dark-bg: #2b2b2b;
  --color-dark-text: #eaeaea;
}

/* ===========================================================
   Base Styles
   =========================================================== */
html, body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding-top: 125px;
  background: var(--color-bg),
    url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 1440 4000" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,180 Q360,250 720,180 T1440,180 L1440,0 L0,0 Z" fill="%23fdf6fa" opacity="0.7"/><path d="M0,700 Q360,800 720,700 T1440,700 L1440,900 L0,900 Z" fill="%23fdf6fa" opacity="0.7"/><path d="M0,250 Q480,350 960,250 T1440,250 L1440,0 L0,0 Z" fill="%23faeef7" opacity="0.5"/><path d="M0,650 Q480,750 960,650 T1440,650 L1440,900 L0,900 Z" fill="%23faeef7" opacity="0.5"/></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  color: var(--color-text);
  transition: background 0.3s, color 0.3s;
}

/* ===========================================================
   Top Banner
   =========================================================== */
.top-banner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  background-color: #EF3340;
  color: var(--color-light);
  text-align: center;
  padding: 0;
  min-height: 36px;
  font-weight: 700;
  font-size: 0.98rem;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  position: relative;
  z-index: 9999;
}
.banner-left, .banner-right {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  box-sizing: border-box;
}
.banner-left {
  /* border-right: 1px solid rgba(255,255,255,0.18); */
  justify-content: flex-end;
}
.banner-right {
  background: #EF3340;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}
#countdown-label {
  font-weight: 300;
  margin-right: 6px;
  display: inline;
  letter-spacing: 0;
  font-size: inherit;
  line-height: 1;
}
#countdown-timer {
  display: inline;
  letter-spacing: 0;
  font-size: inherit;
  line-height: 1;
}
.banner-separator {
  display: flex;
  align-items: center;
  width: 1.5px;
  height: 32px;
  background: #fff;
  opacity: 0.6;
  border-radius: 1px;
  margin: 0 12px;
  align-self: center;
  user-select: none;
}
@media (max-width: 768px) {
  .banner-separator {
    display: none !important;
  }
}
/* Banner Slider Animation */
.banner-slider {
  position: relative;
  height: 1.5em;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.banner-slide {
  position: absolute;
  left: 0; right: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s, transform 0.5s;
  text-align: right;
  width: auto;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0 !important;
  background: #EF3340 !important;
  z-index: 1;
  display: none;
}
/* Ensure first banner-slide is visible on load before JS runs */
.banner-slider .banner-slide:first-child {
  display: block;
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}
.banner-slide.active {
  opacity: 1;
  transform: translateY(0);
  display: block;
  z-index: 2;
}
.top-banner p {
  margin: 0;
}
@media (max-width: 768px) {
  .top-banner {
    flex-direction: column;
    padding: 0;
    font-size: 0.9rem;
    min-height: 36px;
    width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .banner-left, .banner-right {
    width: 100%;
    flex: none;
    padding: 4px 8px;
    font-size: 1em;
    border-right: none !important;
    border-bottom: none !important;
    background: #EF3340 !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }
  .banner-left {
    padding-bottom: 2px !important;
    padding-top: 5px !important;
    margin-bottom: 3px !important;
    border-bottom: none !important;
  }
  .banner-right {
    padding-top: 0 !important;
    padding-bottom: 10px !important;
  }
  .banner-slider {
    align-items: center !important;
    text-align: center !important;
  }
  .banner-slide {
    text-align: center !important;
    width: 100% !important;
  }
  .banner-right {
    border-bottom: none;
    margin-top: -2px;
  }
}

/* ===========================================================
   Utility Classes & Animations
   =========================================================== */
.flash-text {
  animation: flash 1s infinite alternate;
}
@keyframes flash {
  0% { color: #ffffff; }
  50% { color: transparent; }
  100% { color: #ffffff; }
}

/* ===========================================================
   Headings & Links
   =========================================================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
}
nav a:hover, a {
  color: var(--color-accent);
}

/* ===========================================================
   Header & Navigation
   =========================================================== */
#hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 10001;
  margin-right: 16px;
  padding: 8px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
}
#hamburger:focus {
  outline: 2px solid var(--color-accent);
}
#hamburger span {
  display: block;
  height: 3px;
  width: 22px;
  margin: 0 auto;
  background: var(--color-text, #333);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  position: relative;
}
#hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#hamburger.active span:nth-child(2) {
  opacity: 0;
}
#hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
  background: var(--color-light);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  box-sizing: border-box;
}
.header-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  width: 100%;
  box-sizing: border-box;
  background: var(--color-light);
}
header h1 {
  margin: 0;
  font-size: 1.5em;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
}
/* Desktop nav styles only for >900px */
@media (min-width: 901px) {
nav {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}
  nav {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
  }
}
@media (max-width: 900px) {
  nav#nav, #nav {
    display: none !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0 !important;
    width: 100%;
  }
  #nav.active {
    display: flex !important;
  }
  #nav a {
    text-align: center !important;
    width: 100%;
  }
}
nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  transition: color 0.3s;
}
nav a:hover {
  color: var(--color-accent);
}
/* Hide nav on mobile, show hamburger */
@media (max-width: 900px) {
  #hamburger {
    display: flex;
  }
  #nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 110px;
    right: 0;
    height: auto;
    min-height: 220px;
    background: #fff;
    width: 80vw;
    max-width: 320px;
    padding: 32px 24px 24px 24px;
    box-shadow: -2px 4px 16px rgba(60,70,110,0.10);
    z-index: 10002;
    transform: translateX(100%);
    opacity: 1;
    transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
    border-radius: 16px 0 16px 16px;
    display: flex;
    gap: 0;
    align-items: stretch !important;
    justify-content: flex-start !important;
    text-align: left !important;
    animation: none;
  }
  #nav a {
    padding: 16px 0;
    font-size: 1em;
    width: 100%;
    border-radius: 10px;
    text-align: left;
    color: var(--color-text);
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(126,143,166,0.13);
  }
  #nav a:last-child {
    border-bottom: none;
  }
  #nav a:active, #nav a:focus, #nav a:hover {
    background: linear-gradient(90deg, var(--color-accent) 60%, #bfc8dd 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(126,143,166,0.08);
  }
  #nav a::after {
    content: "";
    display: block;
    position: absolute;
    left: 10px; right: 10px; bottom: 6px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #bfc8dd 0%, var(--color-accent) 100%);
    opacity: 0;
    transition: opacity 0.18s;
    pointer-events: none;
  }
  #nav a:active::after, #nav a:focus::after, #nav a:hover::after {
    opacity: 1;
  }
  #nav.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    display: flex;
    /* animation removed to prevent double animation bug */
  }
  #nav {
    gap: 0 !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    text-align: left !important;
  }
  @keyframes navFadeIn {
    from { opacity: 0; transform: translateX(100%) scale(0.98);}
    to   { opacity: 1; transform: translateX(0) scale(1);}
  }
  #nav .close-btn {
    display: none;
  }
  #nav.active .close-btn {
    display: block;
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 2em;
    color: var(--color-accent);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10003;
  }
  /* Overlay for mobile nav */
  #nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(40,40,60,0.32);
    z-index: 10000;
    transition: opacity 0.3s;
    opacity: 0;
  }
  @media (max-width: 900px) {
    header .header-main #nav,
    #nav {
      display: flex !important;
      flex-direction: column !important;
      justify-content: center !important;
      align-items: center !important;
      text-align: center !important;
      gap: 0 !important;
      width: 100%;
    }
    #nav a {
      text-align: center !important;
      width: 100%;
    }
  }
  #nav.active ~ #nav-overlay {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
}

/* ===========================================================
   Hero Section
   =========================================================== */
.hero {
  padding-top: 20px;
  text-align: left;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  max-width: 1100px;
}
.hero-text {
  max-width: 480px;
}
.hero-carousel {
  flex: 1 1 320px;
  max-width: 400px;
  position: relative;
  margin: 0;
}
.hero-carousel img,
.hero-alt-image img {
  display: none;
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-carousel img.active,
.hero-alt-image img.active {
  display: block;
  position: relative;
  opacity: 1;
  z-index: 1;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e3e7ef;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
  opacity: 0.7;
}
.carousel-dot.active {
  background: #bfc8dd;
  opacity: 1;
}
.carousel-dots-alt {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}
.carousel-dots-alt .carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e3e7ef;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
  opacity: 0.7;
}
.carousel-dots-alt .carousel-dot.active {
  background: #bfc8dd;
  opacity: 1;
}
.hero-carousel .carousel-dots,
.hero-alt-image .carousel-dots-alt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
  margin-top: 0;
}

/* ===========================================================
   Shop Variants
   =========================================================== */
.shop-variants {
  padding: 0 32px;
  box-sizing: border-box;
  text-align: center;
}
.shop-variants h2 {
  font-size: 1.7em;
  margin-bottom: 1em;
  text-align: center;
}
.shop-variants .variant-grid {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 48px;
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
}
.shop-variants .variant-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 16px;
  text-align: center;
  transition: transform 0.3s ease;
  min-height: 220px;
  height: auto;
  box-shadow: 0 4px 24px rgba(126,143,166,0.08);
  overflow: hidden;
  position: relative;
}
.variant-card img {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
}
.variant-card .firework-overlay {
  pointer-events: none;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop-variants .variant-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.shop-variants .variant-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 4px 24px rgba(126,143,166,0.08);
}
.shop-variants .variant-card .product-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.shop-variants .variant-card .product-rating .stars {
  display: flex;
  gap: 2px;
}
.shop-variants .variant-card .product-rating .review-count {
  font-size: 0.85em;
  color: var(--color-accent);
}
.shop-variants .variant-card .product-rating i {
  width: 12px;
  height: 12px;
  filter: drop-shadow(0 0 1px #FFD700);
}
.shop-variants .variant-card .product-rating i svg {
  fill: #FFD700 !important;
  stroke: #FFD700 !important;
  stroke-width: 0 !important;
  color: #FFD700 !important;
}
.shop-variants .variant-card h3 {
  margin: 0 0 8px;
  margin-bottom: 0px;
  color: var(--color-heading);
}
.shop-variants .variant-card p {
  color: var(--color-text);
  font-size: 0.85em;
}
.shop-variants .variant-card .price {
  margin-bottom: 15px;
}
.shop-variants .variant-card .price .original-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 4px;
  font-size: 0.9em;
}
.shop-variants .variant-card .price .discounted-price {
  font-weight: 700;
  color: #8B0000;
  font-size: 1.1em;
  margin-right: 4px;
}
.shop-variants .variant-card .price .discount-icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  color: #8B0000;
}
.shop-variants .variant-card a.buy-btn {
  display: inline-block;
  text-decoration: none;
  width: auto;
  align-self: center;
  margin-bottom: 10px;
}
.shop-variants .variant-card a.buy-btn button {
  background: var(--color-accent);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  white-space: nowrap;
  font-size: 1em;
}
.shop-variants .variant-card a.buy-btn button:hover {
  background: #7e8fa6;
}
.shop-variants .variant-card .marketplaces {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: auto;
  max-width: 120px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 4px;
  flex-wrap: wrap;
  align-items: center;
  box-sizing: border-box;
  margin-top: 0px;
}
.shop-variants .variant-card .marketplaces a img {
  max-width: 32px;
  width: 32px;
  height: auto;
  object-fit: contain;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 0.3s ease;
  display: block;
}
.shop-variants .variant-card .marketplaces a img:hover {
  opacity: 0.8;
}
@media (min-width: 901px) {
  .shop-variants .variant-card .marketplaces {
    gap: 4px !important;
    padding: 0 2px !important;
    max-width: 80px !important;
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* SALE Banner for Product Images - Oracle Health Care Style */
@media (min-width: 601px) {
  .sale-banner {
    top: 10px !important;
    left: 10px;
  }
}
.sale-banner {
  position: absolute;
  top: 0;
  left: 10px;
  background: linear-gradient(90deg, #d90429 60%, #fff 100%);
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.13), 0 0 2px #d90429;
  font-weight: 700;
  font-weight: 600;
  font-size: 0.82em;
  letter-spacing: 0.07em;
  text-align: center;
  padding: 2.5px 12px 2.5px 12px;
  border-radius: 7px 0 12px 0;
  z-index: 2;
  box-shadow: 0 1px 6px rgba(0,97,168,0.10);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  text-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid #e3e7ef;
  pointer-events: none;
  width: auto;
  display: inline-block;
  transition: background 0.3s;
  opacity: 0.96;
  letter-spacing: 0.11em;
}
.sale-banner::before {
  content: "";
}

/* ===========================================================
   Features Section
   =========================================================== */
.features, .comparison, .signup {
  background: #fff;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 40px 0;
  background: var(--color-light);
}
.feature {
  max-width: 320px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(126,143,166,0.10);
  padding: 32px 24px 24px 24px;
  text-align: center;
  transition: box-shadow 0.3s;
  position: relative;
  margin: 0;
}
.feature:hover {
  box-shadow: 0 12px 32px rgba(126,143,166,0.18);
  transform: translateY(-4px) scale(1.03);
}
.feature:hover i svg {
  stroke: #8B0000 !important;
}
.feature i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B0000 60%, #b22222 100%);
  color: #8B0000;
  font-size: 2.2em;
  margin: 0 auto 18px auto;
  box-shadow: 0 2px 8px rgba(79,140,255,0.12);
}
.feature h3 {
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #8B0000;
  letter-spacing: 0.5px;
}
.feature p {
  color: var(--color-text);
  font-size: 1em;
  margin-bottom: 0;
}
.faq-card:hover {
  box-shadow: none !important;
  transform: none !important;
}

/* ===========================================================
   Comparison Table
   =========================================================== */
.comparison {
  padding: 30px 8px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
.comparison h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 1em;
  color: var(--color-heading);
}
.comparison table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1em;
  table-layout: fixed;
}
.comparison thead tr {
  background: #f5f5f5;
}
.comparison th, .comparison td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: center;
  color: var(--color-text);
}
.comparison td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--color-heading);
}
.comparison i {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

/* ===========================================================
   Testimonials Section
   =========================================================== */
.testimonials {
  padding: 30px 32px;
  background: var(--color-bg);
  text-align: center;
}
.testimonials h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: var(--color-heading);
}
.testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 4px;
  align-items: start;
  max-width: calc(220px * 4 + 4px * 3);
  margin: 0 auto;
  justify-items: center;
}
.testimonial-videos {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  gap: inherit;
  width: 100%;
}
.tiktok-video {
  background: transparent;
  overflow: visible;
  width: 325px;
  max-width: 100%;
  position: relative;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.tiktok-video blockquote {
  position: relative !important;
  margin: 0;
  transform: scale(0.5);
  transform-origin: top center;
}

/* ===========================================================
   Signup Section
   =========================================================== */
.signup {
  text-align: center;
  padding: 20px 20px;
  background: var(--color-light);
}
.signup h2 {
  color: var(--color-heading);
  margin-bottom: 0.5em;
}
.signup p {
  color: var(--color-text);
  margin-bottom: 1em;
}
.signup input[type="email"] {
  padding: 10px 15px;
  border-radius: 25px;
  border: 1px solid var(--color-gray);
  width: 250px;
  margin-right: 10px;
  font-size: 1em;
  color: var(--color-text);
}
.signup input[type="email"]::placeholder {
  color: var(--color-gray);
}
.signup button {
  padding: 10px 20px;
  border-radius: 25px;
  background: var(--color-accent);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.signup button:hover {
  background: #7e8fa6;
}
.signup form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.signup .g-recaptcha {
  transform: scale(1);
  transform-origin: center;
}

#feedback-form .g-recaptcha {
  background: #fff;
  border-radius: 12px;
  padding: 8px 0 4px 0;
  margin: 12px 0 0 0;
  box-shadow: 0 1px 4px rgba(126,143,166,0.07);
  min-width: 180px;
  display: flex;
  justify-content: center;
}
/* Feedback Form Styles */
#feedback-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(126,143,166,0.08);
  padding: 32px 24px 24px 24px;
}

#feedback-form input[type="text"],
#feedback-form input[type="email"],
#feedback-form select,
#feedback-form textarea {
  width: 100%;
  max-width: 340px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid var(--color-gray);
  font-size: 1em;
  color: var(--color-text);
  background: #f7faff;
  margin-bottom: 0;
  box-sizing: border-box;
  transition: border 0.2s, box-shadow 0.2s;
}

#feedback-form input:focus,
#feedback-form select:focus,
#feedback-form textarea:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 2px #e3eafc;
}

#feedback-form select {
  appearance: none;
  background: #f7faff url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' stroke='%237e8fa6' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 1.2em center/1.2em 1.2em;
  cursor: pointer;
}

#feedback-form textarea {
  resize: vertical;
  min-height: 90px;
  max-height: 220px;
}

#feedback-form button[type="submit"] {
  padding: 12px 28px;
  border-radius: 25px;
  background: var(--color-accent);
  color: white;
  border: none;
  font-weight: 600;
  font-size: 1.08em;
  cursor: pointer;
  transition: background 0.3s;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  margin-top: 8px;
}

#feedback-form button[type="submit"]:hover {
  background: #7e8fa6;
}

#feedback-form .g-recaptcha {
  margin: 8px 0 0 0;
  transform: scale(1);
  transform-origin: center;
}

@media (max-width: 600px) {
  #feedback-form,
  #feedback-form.about-form-card,
  #feedback-form.material-form,
  #feedback-form.premium-card {
    padding: 8px 0 8px 0 !important;
    max-width: 420px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: none !important;
    border: none !important;
    margin: 0 auto 0 auto !important;
    width: 92vw !important;
  }
  #feedback-form input,
  #feedback-form select,
  #feedback-form textarea,
  #feedback-form .about-form-group input,
  #feedback-form .about-form-group select,
  #feedback-form .about-form-group textarea,
  #feedback-form .material-group input,
  #feedback-form .material-group select,
  #feedback-form .material-group textarea,
  #feedback-form .form-group input,
  #feedback-form .form-group select,
  #feedback-form .form-group textarea {
    max-width: 100% !important;
    width: 100% !important;
    font-size: 1em !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  #feedback-form button,
  #feedback-form .about-form-btn,
  #feedback-form .material-btn {
    width: auto !important;
    min-width: 96px !important;
    max-width: 100%;
    font-size: 1.08em !important;
    padding: 14px 28px !important;
    border-radius: 8px !important;
    margin-top: 8px !important;
    box-shadow: none !important;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
  }
  #feedback-form .full-width-btn {
    width: 100% !important;
    font-size: 1.08em !important;
    padding: 14px 0 !important;
    border-radius: 8px !important;
    margin-top: 8px !important;
    box-shadow: none !important;
  }
  #feedback-form .form-heading,
  .about-form-heading,
  .material-form-title {
    font-size: 1.08em !important;
    padding-bottom: 7px !important;
    margin-bottom: 12px !important;
  }
  #feedback-form .form-group,
  .about-form-group,
  .material-group {
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 12px !important;
    gap: 6px !important;
  }
  #feedback-form .g-recaptcha {
    min-width: 120px !important;
    padding: 0 !important;
    margin: 8px 0 0 0 !important;
    box-shadow: none !important;
  }
}
/* ===========================================================
   Footer
   =========================================================== */
/* About Us Page Matching Feedback Form */
#feedback-form.about-form-card {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid #e3eafc;
  box-shadow: 0 8px 32px rgba(126,143,166,0.13);
  padding: 44px 36px 36px 36px;
  margin: 48px auto 48px auto;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-form-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.22em;
  font-weight: 800;
  color: #b71c1c;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
  padding-bottom: 12px;
  border-bottom: 2px solid #e3eafc;
}

.about-form-heading i,
.about-form-heading svg {
  width: 26px;
  height: 26px;
  color: #8B0000;
  vertical-align: middle;
}

.about-form-group {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
}

.about-form-group label {
  font-weight: 700;
  color: #b71c1c;
  margin-bottom: 8px;
  font-size: 1.04em;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.01em;
  background: none;
  position: static;
  padding: 0;
}

.about-form-group label i,
.about-form-group label svg {
  width: 18px;
  height: 18px;
  color: #8B0000;
  vertical-align: middle;
}

.about-form-group input,
.about-form-group select,
.about-form-group textarea {
  width: 100%;
  max-width: 360px;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid #e3eafc;
  font-size: 1.06em;
  color: #b71c1c;
  background: #f7faff;
  margin-top: 0;
  margin-bottom: 0;
  box-sizing: border-box;
  box-shadow: none;
  transition: border 0.18s, background 0.18s;
  outline: none;
}

.about-form-group input:focus,
.about-form-group select:focus,
.about-form-group textarea:focus {
  background: #fff;
  border: 1.5px solid #b71c1c !important;
  box-shadow: 0 0 0 2px #fbeaec;
}

.about-form-group select {
  appearance: none;
  background: #f7faff url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' stroke='%238B0000' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 1.2em center/1.2em 1.2em;
  cursor: pointer;
}

.about-form-group textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 240px;
}

.about-form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 8px;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 10px 24px;
  margin-top: 12px;
  border-radius: 8px;
  background: linear-gradient(90deg, #b71c1c 60%, #7e8fa6 100%);
  color: #fff;
  border: none;
  box-shadow: 0 3px 8px rgba(126,143,166,0.10);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
}

.about-form-btn:hover {
  background: linear-gradient(90deg, #7e8fa6 0%, #b71c1c 100%);
  box-shadow: 0 12px 32px rgba(126,143,166,0.18);
}

@media (max-width: 600px) {
  #feedback-form.about-form-card {
    padding: 16px 2vw 16px 2vw;
    max-width: 99vw;
    border-radius: 12px;
  }
  .about-form-heading {
    font-size: 1em;
    padding-bottom: 7px;
  }
  .about-form-group {
    max-width: 100%;
  }
  .about-form-group input,
  .about-form-group select,
  .about-form-group textarea {
    max-width: 100%;
    font-size: 1em;
  }
}
/* Minimal Material Feedback Form */
#feedback-form.material-form {
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid #e3eafc;
  box-shadow: 0 2px 12px rgba(126,143,166,0.07);
  padding: 36px 24px 28px 24px;
  margin: 32px auto 32px auto;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.material-form-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.18em;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.material-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.material-group label {
  font-size: 0.92em;
  font-weight: 700;
  color: #7e8fa6;
  letter-spacing: 0.09em;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.material-group input,
.material-group select,
.material-group textarea {
  border: none;
  border-bottom: 2px solid #e3eafc;
  background: transparent;
  font-size: 1.08em;
  padding: 12px 2px 8px 0;
  margin-bottom: 0;
  color: var(--color-text);
  transition: border-color 0.18s, background 0.18s;
  outline: none;
  border-radius: 0;
  box-shadow: none;
}

.material-group input:focus,
.material-group select:focus,
.material-group textarea:focus {
  border-bottom: 2px solid var(--color-accent);
  background: #f7faff;
}

.material-group select {
  appearance: none;
  background: transparent url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' stroke='%237e8fa6' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 0.5em center/1.2em 1.2em;
  cursor: pointer;
  padding-right: 2em;
}

.material-group textarea {
  resize: vertical;
  min-height: 90px;
  max-height: 220px;
}

.material-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.09em;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 0;
  margin-top: 10px;
  border-radius: 8px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(126,143,166,0.10);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}

.material-btn:hover {
  background: #2eccb8;
  box-shadow: 0 4px 16px rgba(46,204,184,0.13);
}

@media (max-width: 600px) {
  #feedback-form.material-form {
    padding: 12px 2vw 12px 2vw;
    max-width: 99vw;
    border-radius: 10px;
  }
  .material-form-title {
    font-size: 1em;
    margin-bottom: 18px;
  }
}
/* Professional Clean Feedback Form */
#feedback-form.premium-card {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid #e3eafc;
  box-shadow: 0 6px 32px rgba(126,143,166,0.10);
  padding: 38px 32px 32px 32px;
  margin-top: 28px;
  margin-bottom: 28px;
  max-width: 420px;
  transition: box-shadow 0.18s;
  position: relative;
}

#feedback-form .form-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.18em;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #e3eafc;
}

#feedback-form .form-group {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 22px;
  position: relative;
}

/* removed legacy #feedback-form label rules */

#feedback-form input,
#feedback-form select,
#feedback-form textarea {
  width: 100%;
  max-width: 360px;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid #e3eafc;
  font-size: 1.06em;
  color: var(--color-text);
  background: #f7faff;
  margin-top: 0;
  margin-bottom: 0;
  box-sizing: border-box;
  box-shadow: none;
  transition: border 0.18s, background 0.18s;
  outline: none;
}

#feedback-form input:focus,
#feedback-form select:focus,
#feedback-form textarea:focus {
  background: #fff;
  border: 1.5px solid var(--color-accent);
}

#feedback-form select {
  appearance: none;
  background: #f7faff url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' stroke='%237e8fa6' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 1.2em center/1.2em 1.2em;
  cursor: pointer;
}

#feedback-form textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 240px;
}

#feedback-form .form-divider {
  width: 100%;
  height: 2px;
  background: #e3eafc;
  border-radius: 1px;
  margin: 24px 0 14px 0;
  opacity: 0.7;
}

#feedback-form .full-width-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.09em;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 0;
  margin-top: 10px;
  border-radius: 10px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  box-shadow: 0 3px 8px rgba(126,143,166,0.08);
  cursor: pointer;
  transition: background 0.18s;
}

#feedback-form .full-width-btn:hover {
  background: #2eccb8;
}

@media (max-width: 600px) {
  #feedback-form.premium-card {
    padding: 16px 2vw 16px 2vw;
    max-width: 99vw;
    border-radius: 12px;
  }
  #feedback-form .form-heading {
    font-size: 1.08em;
    padding-bottom: 7px;
  }
  #feedback-form .form-group {
    max-width: 100%;
  }
  #feedback-form input,
  #feedback-form select,
  #feedback-form textarea {
    max-width: 100%;
    font-size: 1em;
  }
}
/* removed floating label and .form-group rules for feedback form */
/* Modern Glassmorphism Feedback Form */
#feedback-form.premium-card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-radius: 28px;
  border: 1.5px solid #e3eafc;
  box-shadow: 0 12px 40px 0 rgba(126,143,166,0.18), 0 2px 8px 0 rgba(0,0,0,0.08);
  padding: 44px 32px 32px 32px;
  margin-top: 28px;
  margin-bottom: 28px;
  max-width: 440px;
  transition: box-shadow 0.22s, transform 0.18s;
  position: relative;
}
#feedback-form.premium-card:hover {
  box-shadow: 0 18px 56px 0 rgba(126,143,166,0.22), 0 4px 16px 0 rgba(0,0,0,0.10);
  transform: translateY(-2px) scale(1.012);
}

#feedback-form .form-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.28em;
  font-weight: 800;
  color: #2eccb8;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
  padding-bottom: 12px;
  border-bottom: 2px solid #e3eafc;
  text-shadow: 0 2px 8px rgba(46,204,184,0.08);
}

#feedback-form .form-heading i,
#feedback-form .form-heading svg {
  width: 28px;
  height: 28px;
  color: #2eccb8;
  vertical-align: middle;
}

#feedback-form .form-group {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 18px;
  position: relative;
}

#feedback-form label {
  font-weight: 600;
  color: #7e8fa6;
  margin-bottom: 0;
  font-size: 1.01em;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.01em;
  position: absolute;
  top: 14px;
  left: 18px;
  pointer-events: none;
  opacity: 0.85;
  transition: all 0.18s;
  background: transparent;
  z-index: 2;
}

#feedback-form input:focus + label,
#feedback-form input:not(:placeholder-shown) + label,
#feedback-form textarea:focus + label,
#feedback-form textarea:not(:placeholder-shown) + label,
#feedback-form select:focus + label,
#feedback-form select:not([value=""]) + label {
  top: -12px;
  left: 10px;
  font-size: 0.93em;
  color: #2eccb8;
  opacity: 1;
  background: rgba(255,255,255,0.85);
  padding: 0 6px;
  border-radius: 8px;
}

#feedback-form input,
#feedback-form select,
#feedback-form textarea {
  width: 100%;
  max-width: 360px;
  padding: 18px 18px 10px 18px;
  border-radius: 18px;
  border: none;
  font-size: 1.08em;
  color: var(--color-text);
  background: rgba(247,250,255,0.85);
  margin-top: 0;
  margin-bottom: 0;
  box-sizing: border-box;
  box-shadow: 0 1.5px 8px rgba(126,143,166,0.07);
  transition: box-shadow 0.18s, border 0.18s, background 0.18s;
  outline: none;
}

#feedback-form input:focus,
#feedback-form select:focus,
#feedback-form textarea:focus {
  background: #fff;
  box-shadow: 0 2px 16px rgba(46,204,184,0.13);
  border: 1.5px solid #2eccb8;
}

#feedback-form select {
  appearance: none;
  background: rgba(247,250,255,0.85) url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' stroke='%232eccb8' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 1.2em center/1.2em 1.2em;
  cursor: pointer;
}

#feedback-form textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 240px;
}

#feedback-form .form-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #e3eafc 0%, #bfc8dd 100%);
  border-radius: 1px;
  margin: 28px 0 18px 0;
  opacity: 0.7;
}

#feedback-form .full-width-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.15em;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 18px 0;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2eccb8 0%, #7e8fa6 100%);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(46,204,184,0.13);
  cursor: pointer;
  transition: background 0.22s, transform 0.18s, box-shadow 0.18s;
}

#feedback-form .full-width-btn:hover {
  background: linear-gradient(90deg, #7e8fa6 0%, #2eccb8 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 32px rgba(46,204,184,0.18);
}

@media (max-width: 600px) {
  #feedback-form.premium-card {
    padding: 16px 2vw 16px 2vw;
    max-width: 99vw;
    border-radius: 16px;
  }
  #feedback-form .form-heading {
    font-size: 1.08em;
    padding-bottom: 7px;
  }
  #feedback-form .form-group {
    max-width: 100%;
  }
  #feedback-form input,
  #feedback-form select,
  #feedback-form textarea {
    max-width: 100%;
    font-size: 1em;
  }
}
/* Premium Card Style for Feedback Form */
#feedback-form.premium-card {
  background: linear-gradient(120deg, #fafdff 80%, #f7faff 100%);
  border-radius: 22px;
  border-left: 6px solid var(--color-accent);
  box-shadow: 0 8px 32px rgba(126,143,166,0.13), 0 2px 8px rgba(0,0,0,0.06);
  padding: 38px 30px 30px 30px;
  margin-top: 18px;
  margin-bottom: 18px;
  position: relative;
  max-width: 430px;
}

#feedback-form .form-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.22em;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #e3eafc;
}

#feedback-form .form-heading i,
#feedback-form .form-heading svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
  vertical-align: middle;
}

#feedback-form .full-width-btn {
  background: linear-gradient(90deg, #7e8fa6 0%, #2eccb8 100%);
  font-size: 1.12em;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(126,143,166,0.13);
  transition: background 0.22s, transform 0.18s;
  margin-bottom: 2px;
}

#feedback-form .full-width-btn:hover {
  background: linear-gradient(90deg, #2eccb8 0%, #7e8fa6 100%);
  transform: translateY(-2px) scale(1.03);
}

#feedback-form .form-divider {
  margin: 24px 0 14px 0;
  height: 2px;
  background: linear-gradient(90deg, #e3eafc 0%, #bfc8dd 100%);
  opacity: 0.7;
}

@media (max-width: 600px) {
  #feedback-form.premium-card {
    padding: 18px 4px 18px 12px;
    max-width: 99vw;
    border-radius: 14px;
  }
  #feedback-form .form-heading {
    font-size: 1.08em;
    padding-bottom: 7px;
  }
}
/* Feedback Form Enhanced Styles */
#feedback-form .form-group {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
  position: relative;
}

#feedback-form label {
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 6px;
  font-size: 1.04em;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.01em;
}

#feedback-form label i,
#feedback-form label svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  vertical-align: middle;
}

#feedback-form input,
#feedback-form select,
#feedback-form textarea {
  margin-top: 0;
  margin-bottom: 0;
}

#feedback-form .form-divider {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, #e3eafc 0%, #f7faff 100%);
  border-radius: 1px;
  margin: 18px 0 10px 0;
  opacity: 0.5;
}

#feedback-form .full-width-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.09em;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 0;
  margin-top: 10px;
  border-radius: 25px;
  background: linear-gradient(90deg, var(--color-accent) 60%, #bfc8dd 100%);
  color: #fff;
  border: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background 0.3s;
}

#feedback-form .full-width-btn:hover {
  background: linear-gradient(90deg, #7e8fa6 60%, #bfc8dd 100%);
}

@media (max-width: 600px) {
  #feedback-form .form-group {
    max-width: 100%;
  }
  #feedback-form .full-width-btn {
    font-size: 1em;
    padding: 12px 0;
  }
}
footer {
  padding: 20px;
  font-size: 0.85em;
  text-align: center;
  color: var(--color-gray);
  background: var(--color-light);
}

/* ===========================================================
   Headings
   =========================================================== */
h1 {
  font-size: 2.8em;
  line-height: 1.1;
}
h2 {
  font-size: 1.8em;
  line-height: 1.15;
}
h3 {
  font-size: 1.2em;
  line-height: 1.2;
}

/* ===========================================================
   About Page Section
   =========================================================== */
.about-section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(126,143,166,0.10);
  padding: 48px 40px 40px 40px;
  margin: 48px auto 48px auto;
  max-width: 800px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.about-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5em;
  color: var(--color-maroon-red);
  margin-bottom: 0.5em;
}

.about-section h2 {
  color: var(--color-maroon-red);
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-size: 1.3em;
}

.about-section ul {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.about-section li {
  margin-bottom: 0.5em;
  font-size: 1.1em;
}

.about-section p {
  font-size: 1.15em;
  margin-bottom: 1.2em;
}

.about-section a {
  color: var(--color-maroon-red);
  text-decoration: underline;
}

.about-section .divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-maroon-red), var(--color-accent));
  border-radius: 2px;
  margin: 24px 0;
  opacity: 0.15;
}

@media (max-width: 900px) {
  .about-section {
    padding: 24px 10px 24px 10px;
    margin: 24px 0 24px 0;
  }
}

/* ===========================================================
   Hero Alt Section
   =========================================================== */
.hero-alt {
  padding-top: 40px;
  text-align: left;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  background: none;
}
.hero-alt-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  max-width: 1100px;
  flex-direction: row;
}
.hero-alt-text {
  max-width: 480px;
}
.hero-alt-image {
  flex: 1 1 320px;
  max-width: 400px;
  text-align: center;
}
.hero-alt-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(126,143,166,0.08);
}
.hero-alt-image img.active {
  opacity: 1;
}

/* ===========================================================
   Sticky Shop Buttons
   =========================================================== */
.sticky-shop-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.sticky-shop-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  transform: translateX(calc(100% - 48px));
}
.sticky-shop-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.sticky-shop-btn.lazada {
  background-color: var(--color-maroon-red);
}
.sticky-shop-btn.shopee {
  background-color: #ee4d2d;
}
.sticky-shop-btn:hover {
  transform: translateX(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ===========================================================
   Miscellaneous
   =========================================================== */
.variant-card h5 {
  margin-top: 0;
  margin-bottom: 0;
  font: 1em sans-serif;
  font-family: 'Dancing Script', cursive;
}

/* ===========================================================
   Media Queries
   =========================================================== */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .hero-text, .hero-carousel {
    max-width: 100%;
    text-align: center;
  }
  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero-alt-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 12px;
  }
  .hero-alt-text, .hero-alt-image {
    max-width: 100%;
    text-align: center;
  }
  .hero-alt {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
  .shop-variants {
    width: 100vw !important;
    max-width: 100% !important;
    padding: 0 8px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .shop-variants .variant-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin-bottom: 16px !important;
    justify-items: start !important;
  }
  .shop-variants .variant-card {
    width: 100% !important;
    margin: 0 !important;
    padding: 8px !important;
    box-sizing: border-box !important;
  }
  .shop-variants .variant-card img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
  }
  .shop-variants .variant-card .marketplaces {
    margin-top: auto;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px !important;
  }
  .shop-variants .variant-card .marketplaces a {
    width: 26px !important;
    height: 26px !important;
  }
  .shop-variants .variant-card .marketplaces a img {
    max-width: 26px !important;
    width: 26px !important;
    height: 26px !important;
    object-fit: contain !important;
    display: block !important;
  }
  .comparison table {
    max-width: 100%;
  }
  .testimonials .container {
    flex-direction: column;
    align-items: center;
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 8px;
    max-width: 100%;
  }
  .tiktok-video {
    width: 100%;
  }
  .tiktok-video iframe {
    width: 100% !important;
    height: 280px !important;
  }
  .sticky-shop-btns {
    top: 70%;
  }
  html {
    scroll-padding-top: 110px;
  }
@media (max-width: 900px) {
  .faq-responsive {
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
@media (max-width: 600px) {
  .faq-responsive {
    max-width: 100% !important;
    font-size: 1.08em;
    line-height: 1.6;
  }
  .faq-responsive h2 {
    font-size: 1.2em !important;
    margin-bottom: 1em !important;
  }
  .faq-responsive > div > div {
    margin-bottom: 1.5em !important;
  }
}
  }
}
}
html {
  scroll-padding-top: 140px;
  scroll-behavior: smooth;
}

/* Footer Styles */
footer {
  background: #f7faff;
  border-top: 1px solid #e3e7ef;
  padding: 32px 0 18px 0;
  margin-top: 48px;
  font-family: 'Inter', sans-serif;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 12px;
}

.footer-links a {
  color: #1a2340;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08em;
  transition: color 0.2s;
}
@media (max-width: 600px) {
  .sale-banner {
    top: 2px !important;
    left: 4px !important;
    font-size: 0.82em;
    padding: 2px 7px 2px 7px;
    border-radius: 6px 0 10px 0;
    min-width: 54px;
    max-width: 90px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(217,4,41,0.13);
  }
}

.footer-links a:hover {
  color: #2e6cff;
  text-decoration: underline;
}

.footer-copy {
  text-align: center;
  color: #7e8fa6;
  font-size: 0.98em;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
  footer {
    padding: 24px 0 12px 0;
  }
}

/* CNY Celebration Banner */
.sg60-banner {
  background: #ed1a3b;
  padding: 18px 0 12px 0;
  text-align: center;
  margin-bottom: 32px;
  box-shadow: 0 4px 24px 0 rgba(248,181,0,0.08);
}
.sg60-banner img {
  height: 80px;
  margin-bottom: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.sg60-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.sg60-banner p {
  font-size: 1.35rem;
  color: #fff;
  max-width: 600px;
  margin: 0 auto 10px auto;
}
.sg60-banner p span {
  color: #fff !important;
}
@media (max-width: 600px) {
  .sg60-banner {
    padding: 24px 0 18px 0;
    border-radius: 0;
  }
  .sg60-banner img {
    height: 54px;
    margin-bottom: 10px;
  }
  .sg60-banner h1 {
    font-size: 1.5rem;
  }
  .sg60-banner p {
    font-size: 1rem;
  }
}

/* CNY Banner Flex Layout */
.sg60-banner-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px !important;
  padding: 0;
  text-align: left;
}
.sg60-logo-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sg60-logo-col svg {
  width: 200px;
  height: 200px;
  max-width: 24vw;
  max-height: 24vw;
}
.sg60-text-col {
  flex: 1 1 0;
  min-width: 220px;
}
.sg60-text-col h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #fff !important;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.sg60-text-col p {
  font-size: 1.5rem;
  color: #fff !important;
  max-width: 600px;
  margin: 0 0 10px 0;
}
@media (max-width: 900px) {
  .sg60-banner-flex {
    flex-direction: column;
    gap: 4px !important;
    padding: 28px 0 18px 0;
    text-align: center;
  }
  .sg60-logo-col {
    margin-right: 0 !important;
  }
  .sg60-logo-col svg {
    width: 160px;
    height: 160px;
    max-width: 60vw;
    max-height: 60vw;
  }
  .sg60-text-col h1 {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
  .sg60-text-col p {
    font-size: 1.05rem;
  }
}

.sg60-banner-center {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 950px) {
  .sg60-banner-center {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}

.sg60-banner-flex {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.sg60-logo-col {
  padding-left: 2.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 600px) {
  .sg60-logo-col {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}

#backToTop {
  display: none;
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 1000;
  background: #fff;
  color: #222;
  border: 1.5px solid #bbb;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
#backToTop:hover,
#backToTop:active {
  background: #1976d2;
  color: #fff;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.18);
}
#backToTop:hover i,
#backToTop:active i {
  color: #fff;
}

/* Dropdown menu for Products in nav */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropbtn {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  padding: 0.5em 1em;
  cursor: pointer;
  font-weight: 600;
  outline: none;
}
.dropbtn:after {
  content: '';
}
.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 1000;
  border-radius: 8px;
  margin-top: 0.5em;
  overflow: hidden;
}
.dropdown.open .dropdown-content {
  display: block;
}
.dropdown-content a {
  color: #222;
  padding: 12px 18px;
  text-decoration: none;
  display: block;
  font-size: 1em;
  transition: background 0.15s;
}
.dropdown-content a:hover,
.dropdown-content a:focus {
  background: #f5f5f5;
}
@media (max-width: 900px) {
  .dropdown-content {
    position: static;
    box-shadow: none;
    min-width: 0;
    margin-top: 0;
    border-radius: 0;
  }
  .dropdown {
    width: 100%;
  }
  .dropbtn {
    width: 100%;
    text-align: left;
  }
}

/* Enhanced dropdown appearance */
.dropbtn {
  background: #f8f9fa;
  border-radius: 6px;
  border: none;
  color: #222;
  font: inherit;
  font-weight: 600;
  padding: 8px 22px 8px 16px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  position: relative;
}


.dropbtn:focus, .dropbtn:hover {
  background: #e9ecef;
  outline: none;
}
.dropdown-content {
  animation: dropdown-fade-in 0.22s cubic-bezier(.4,0,.2,1);
  padding: 8px 0;
}
@keyframes dropdown-fade-in {
  from { opacity: 0; transform: translateY(8px);}
  to   { opacity: 1; transform: translateY(0);}
}
.dropdown-content a {
  border-radius: 4px;
  margin: 0 8px;
}
.dropdown-content a:hover,
.dropdown-content a:focus {
  background: #f0f4fa;
  color: #1976d2;
}

/* Premium oral care dropdown styling */
.dropbtn {
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
  border: 1.5px solid #e3eafc;
  color: #1976d2;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 32px 10px 20px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, border 0.18s;
  box-shadow: 0 2px 16px 0 rgba(25,118,210,0.07), 0 1.5px 6px 0 rgba(0,0,0,0.04);
  position: relative;
  outline: none;
  font-size: 1.08em;
  backdrop-filter: blur(2px);
}


.dropbtn:focus, .dropbtn:hover {
  background: #e3f2fd;
  border-color: #90caf9;
  color: #1565c0;
}
.dropdown-content {
  animation: dropdown-fade-in 0.22s cubic-bezier(.4,0,.2,1);
  padding: 14px 0;
  background: rgba(255,255,255,0.96);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(25,118,210,0.13), 0 2px 8px 0 rgba(0,0,0,0.06);
  border: 1.5px solid #e3eafc;
  backdrop-filter: blur(6px);
}
@keyframes dropdown-fade-in {
  from { opacity: 0; transform: translateY(12px);}
  to   { opacity: 1; transform: translateY(0);}
}
.dropdown-content a {
  border-radius: 10px;
  margin: 0 12px;
  padding: 14px 20px;
  color: #1976d2;
  font-weight: 600;
  font-size: 1.04em;
  letter-spacing: 0.01em;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  box-shadow: none;
}
.dropdown-content a:hover,
.dropdown-content a:focus {
  background: linear-gradient(90deg, #e3f2fd 0%, #bbdefb 100%);
  color: #0d47a1;
  box-shadow: 0 2px 8px 0 rgba(25,118,210,0.07);
}

/* Refined nav and dropdown for desktop */
@media (min-width: 900px) {
  #nav a,
  .dropbtn {
    font-size: 0.98em;
    padding: 7px 18px 7px 14px;
    border-radius: 18px;
    margin: 0 2px;
    min-width: unset;
    box-shadow: none;
  }
  .dropbtn {
    padding: 7px 22px 7px 14px;
    border-radius: 18px;
    font-size: 1em;
    font-weight: 600;
    border-width: 1px;
  }
  .dropdown-content {
    min-width: 160px;
    border-radius: 12px;
    padding: 6px 0;
    box-shadow: 0 4px 16px 0 rgba(25,118,210,0.09), 0 1px 4px 0 rgba(0,0,0,0.03);
  }
  .dropdown-content a {
    font-size: 0.97em;
    padding: 10px 16px;
    margin: 0 6px;
    border-radius: 7px;
  }
}

/* Minimalist dropdown refinement */
@media (min-width: 900px) {
  .dropdown-content {
    padding: 0;
    border-radius: 8px;
    min-width: 148px;
    box-shadow: 0 4px 16px 0 rgba(25,118,210,0.07), 0 1px 4px 0 rgba(0,0,0,0.02);
  }
  .dropdown-content a {
    padding: 9px 18px;
    margin: 0;
    border-radius: 0;
    font-size: 0.96em;
    border-bottom: 1px solid #f0f4fa;
    background: none;
    color: #1976d2;
    text-align: left;
    box-shadow: none;
  }
  .dropdown-content a:last-child {
    border-bottom: none;
  }
  .dropdown-content a:hover,
  .dropdown-content a:focus {
    background: #f5faff;
    color: #1565c0;
  }
}

/* Clean dropdown text style */
@media (min-width: 900px) {
  .dropdown-content a {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #23405a;
    line-height: 1.5;
    vertical-align: middle;
    background: none;
    text-shadow: none;
    text-rendering: optimizeLegibility;
  }
}

/* Prevent dropdown menu text from wrapping */
@media (min-width: 900px) {
  .dropdown-content {
    min-width: 200px;
  }
  .dropdown-content a {
    white-space: nowrap;
    letter-spacing: 0.01em;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Ensure anchor targets are visible below fixed header */
#compare {
  scroll-margin-top: 90px;
}

/* Improved main nav bar styling */
.main-nav {
  background: #fff;
  border-bottom: 1.5px solid #e3eafc;
  box-shadow: 0 2px 12px 0 rgba(25,118,210,0.03);
  padding: 0 24px;
  z-index: 100;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  position: relative;
  margin: 0 2px;
}
.nav-item > a,
.dropbtn {
  display: inline-block;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1em;
  font-weight: 500;
  color: #23405a;
  padding: 8px 18px;
  border-radius: 18px;
  background: none;
  border: none;
  transition: background 0.16s, color 0.16s;
  text-decoration: none;
  cursor: pointer;
}
.nav-item > a:hover,
.nav-item > a:focus,
.dropbtn:hover,
.dropbtn:focus {
  background: #e3f2fd;
  color: #1976d2;
  outline: none;
}
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  background: #fff;
  border: 1.5px solid #e3eafc;
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(25,118,210,0.13), 0 2px 8px 0 rgba(0,0,0,0.06);
  min-width: 180px;
  padding: 6px 0;
  z-index: 1000;
}
.dropdown.open .dropdown-content {
  display: block;
}
.dropdown-content li {
  list-style: none;
}
.dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: #23405a;
  font-size: 0.98em;
  font-weight: 400;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.14s, color 0.14s;
  white-space: nowrap;
}
.dropdown-content a:hover,
.dropdown-content a:focus {
  background: #f5faff;
  color: #1565c0;
}
@media (max-width: 900px) {
  .main-nav {
    padding: 0 8px;
    border-bottom: none;
    box-shadow: none;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .nav-item {
    width: 100%;
  }
  .nav-item > a,
  .dropbtn {
    width: 100%;
    text-align: left;
    border-radius: 0;
    padding: 14px 18px;
  }
  .dropdown-content {
    position: static;
    border: none;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    padding: 0;
  }
}

/* Advanced nav bar polish */
.main-nav {
  background: linear-gradient(90deg, #fafdff 0%, #f3f8fd 100%);
  border-bottom: 1.5px solid #e3eafc;
  box-shadow: 0 2px 12px 0 rgba(25,118,210,0.04);
  padding: 0 24px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 22px;
  background: #e3eafc;
  margin-left: 10px;
  vertical-align: middle;
}
.nav-item {
  position: relative;
  margin: 0 2px;
}
.nav-item > a,
.dropbtn {
  display: inline-block;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1em;
  font-weight: 500;
  color: #23405a;
  padding: 7px 16px 7px 16px;
  border-radius: 16px;
  background: none;
  border: none;
  transition: background 0.16s, color 0.16s;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.nav-item > a:hover::after,
.nav-item > a:focus::after,
.dropbtn:hover::after,
.dropbtn:focus::after {
  transform: scaleX(1);
}



/* Restore clean, minimal nav bar */
.main-nav {
  background: #fff;
  border-bottom: 1px solid #e3eafc;
  box-shadow: none;
  padding: 0 24px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  position: relative;
  margin: 0 2px;
}
.nav-item > a,
.dropbtn {
  display: inline-block;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1em;
  font-weight: 500;
  color: #23405a;
  padding: 8px 18px;
  border-radius: 18px;
  background: none;
  border: none;
  transition: background 0.16s, color 0.16s;
  text-decoration: none;
  cursor: pointer;
}
.nav-item > a:hover,
.nav-item > a:focus,
.dropbtn:hover,
.dropbtn:focus {
  background: #e3f2fd;
  color: #1976d2;
  outline: none;
}



/* Remove nav and dropdown borders for a softer look */
.main-nav {
  border-bottom: none !important;
  box-shadow: none;
}
.dropdown-content {
  border: none !important;
  box-shadow: 0 8px 32px 0 rgba(25,118,210,0.10), 0 2px 8px 0 rgba(0,0,0,0.04);
}

/* Explicitly remove any nav item separators */
.nav-item,
.nav-list > * {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

/* Remove any nav item pseudo-element separators */
.nav-item::after,
.nav-list > *::after {
  display: none !important;
  content: none !important;
}

/* Professional dropdown chevron arrow */






/* Mobile dropdown menu refinement */
@media (max-width: 900px) {
  .dropdown-content {
    width: 100%;
    min-width: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    padding: 0;
  }
  .dropdown-content li {
    width: 100%;
  }
  .dropdown-content a {
    width: 100%;
    padding: 16px 18px;
    border-radius: 0;
    border-bottom: 1px solid #f0f4fa;
    color: #23405a;
    background: none;
  }
  .dropdown-content a:last-child {
    border-bottom: none;
  }
}

/* Enhanced mobile dropdown appearance */
@media (max-width: 900px) {
  .dropdown-content {
    background: #f7f8fa;
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 6px 0;
    box-shadow: none;
    border-radius: 0;
  }
  .dropdown-content a {
    font-size: 1.08em;
    padding: 18px 22px;
    color: #23405a;
    background: none;
    border-bottom: none;
    border-radius: 0;
  }
}

/* Refined mobile dropdown for clarity and touch */
@media (max-width: 900px) {
  .dropdown-content {
    background: #fff;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 16px 0 rgba(25,30,50,0.07);
    border-radius: 10px;
  }
  .dropdown-content a {
    font-size: 1.08em;
    font-weight: 600;
    color: #1a2340;
    padding: 16px 20px;
    border-radius: 10px;
    margin: 4px 8px;
    background: none;
    transition: background 0.13s, color 0.13s;
  }
  .dropdown-content a:active,
  .dropdown-content a:focus {
    background: #f0f4fa;
    color: #1976d2;
  }
}

/* Revert mobile dropdown to simple flat style */
@media (max-width: 900px) {
  .dropdown-content {
    background: #fff;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }
  .dropdown-content a {
    font-size: 1em;
    font-weight: 400;
    color: #23405a;
    padding: 14px 18px;
    border-radius: 0;
    margin: 0;
    background: none;
    border-bottom: 1px solid #f0f4fa;
    transition: background 0.13s, color 0.13s;
  }
  .dropdown-content a:last-child {
    border-bottom: none;
  }
  .dropdown-content a:active,
  .dropdown-content a:focus {
    background: #f5faff;
    color: #1976d2;
  }
}

/* Reduce mobile nav button gap */
@media (max-width: 900px) {
  .nav-list {
    gap: 0 !important;
  }
  .nav-item {
    margin: 0 !important;
  }
}

:root {
  --sg-red: #fbeaec;
}
.nav-item > a:hover,
.nav-item > a:focus,
.dropbtn:hover,
.dropbtn:focus {
  background: var(--sg-red);
  color: #b71c1c;
}
.dropdown-content a:hover,
.dropdown-content a:focus,
.dropdown-content a:active {
  background: var(--sg-red);
  color: #b71c1c;
}
@media (max-width: 900px) {
  .dropdown-content a:active,
  .dropdown-content a:focus {
    background: var(--sg-red);
    color: #b71c1c;
  }
}

/* Singapore red underline and chevron */

.dropbtn span[aria-hidden="true"] svg path {
  stroke: #b71c1c !important;
  transition: stroke 0.18s;
}

/* Use only underline for nav and dropdown links */
.nav-item > a,
.dropbtn,
.dropdown-content a {
  text-decoration: none;
}
.nav-item > a:hover,
.nav-item > a:focus,
.dropbtn:hover,
.dropbtn:focus,
.dropdown-content a:hover,
.dropdown-content a:focus,
.dropdown-content a:active {
  background: none !important;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: #b71c1c;
}

/* Thinner underline for nav and dropdown links */
.nav-item > a:hover,
.nav-item > a:focus,
.dropbtn:hover,
.dropbtn:focus,
.dropdown-content a:hover,
.dropdown-content a:focus,
.dropdown-content a:active {
  text-decoration-thickness: 1px;
}

/* Animated thin Singapore red underline for nav and dropdown */
.nav-item > a,
.dropbtn {
  position: relative;
  overflow: hidden;
}
.nav-item > a::after,
.dropbtn::after {
  content: "";
  display: block;
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 1px;
  background: #b71c1c;
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.18s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.nav-item > a:hover::after,
.nav-item > a:focus::after,
.dropbtn:hover::after,
.dropbtn:focus::after {
  transform: scaleX(1);
}

/* Remove native underline so only animated underline shows */
.nav-item > a,
.dropbtn,
.dropdown-content a {
  text-decoration: none !important;
}

/* Ensure Products dropbtn matches other nav links */
.nav-item > a,
.dropbtn {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1em;
  font-weight: 500;
  padding: 14px 18px;
  vertical-align: middle;
  line-height: 1.2;
  background: none;
  border: none;
  border-radius: 0;
  color: #1a2340;
  box-sizing: border-box;
}
.dropbtn span[aria-hidden="true"] {
  margin-left: 6px;
  vertical-align: middle;
  display: inline-block;
}

/* Restore dropbtn border-radius and background for consistency */
.nav-item > a,
.dropbtn {
  border-radius: 18px;
  background: none;
  padding: 8px 18px;
  line-height: 1.5;
  box-sizing: border-box;
}

/* Align Products underline with other nav links */
.dropbtn::after {
  left: 8px !important;
  right: 32px !important;
  bottom: 4px;
}

/* Perfectly align Products underline with other nav links */
.dropbtn {
  padding-right: 32px !important;
}
.dropbtn::after {
  left: 18px !important;
  right: 18px !important;
}

/* Fine-tune Products underline width */
.dropbtn {
  padding-right: 24px !important;
}
.dropbtn::after {
  right: 24px !important;
}
