:root {
  --black: #faf8f5;           /* Main background (soft off-white) */
  --black-deep: #f2ece3;      /* Secondary background (footer, panels) */
  --surface: #ffffff;         /* Card & container surface (pure white) */
  --gold: #b58d1d;            /* Main luxury gold */
  --gold-light: #d8b240;      /* Bright gold accent */
  --gold-deep: #8a6a12;       /* Rich deep gold for text/borders */
  --crimson: #8f152f;         /* Main rich crimson */
  --crimson-light: #b8324f;   /* Vibrant crimson accent */
  --crimson-deep: #5e0c1e;    /* Deep crimson accent */
  --ivory: #1c1815;           /* Primary text (warm charcoal black) */
  --taupe: #6e6458;           /* Muted text / labels */
  --border: rgba(181, 141, 29, 0.28); /* Delicate gold border */
  /* --nav-height: 78px; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--ivory);
  font-family:
    "Jost",
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

section {
  scroll-margin-top: var(--nav-height);
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------------- NAV ---------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.7s ease both;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.wordmark {
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
}

.wordmark-main {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.wordmark-main .love {
  background: linear-gradient(120deg,
      var(--gold-deep),
      var(--gold) 50%,
      var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wordmark-main .nest {
  background: linear-gradient(120deg,
      var(--crimson-deep),
      var(--crimson) 50%,
      var(--crimson-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wordmark-sub {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--taupe);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  list-style: none;
}

.nav-links button {
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  padding-bottom: 6px;
  font-family: "Jost", sans-serif;
}

.nav-links button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson-light), var(--gold));
  transition: width 0.35s ease;
}

.nav-links button:hover::after,
.nav-links button:focus-visible::after {
  width: 100%;
}

/* ---------------- THRESHOLD (gender gate / signature) ---------------- */
.threshold {
  padding: clamp(56px, 9vw, 100px) 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(ellipse at center, #ffffff 0%, var(--black) 75%);
}

.threshold-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.9s ease 0.12s both;
}

.gate {
  width: clamp(210px, 25vw, 300px);
  height: clamp(210px, 25vw, 300px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  background: var(--surface);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    background-color 0.4s ease;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.gate-girls {
  border: 1.5px solid var(--crimson-light);
  margin-right: clamp(-46px, -6vw, -30px);
}

.gate-boys {
  border: 1.5px solid var(--gold);
  margin-left: clamp(-46px, -6vw, -30px);
}

.gate:hover,
.gate:focus-visible {
  transform: scale(1.045);
}

.gate-girls:hover,
.gate-girls:focus-visible {
  box-shadow: 0 12px 40px rgba(184, 50, 79, 0.18);
  background: rgba(184, 50, 79, 0.03);
}

.gate-boys:hover,
.gate-boys:focus-visible {
  box-shadow: 0 12px 40px rgba(181, 141, 29, 0.2);
  background: rgba(181, 141, 29, 0.03);
}

.gate-glyph {
  font-size: clamp(44px, 6vw, 60px);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1;
}

.gate-girls .gate-glyph,
.top-cat-girl .gate-glyph {
  color: var(--crimson);
}

.gate-boys .gate-glyph,
.top-cat-boy .gate-glyph {
  color: var(--gold-deep);
}

.gate-label {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(21px, 3vw, 28px);
  letter-spacing: 6px;
  font-weight: 600;
  color: var(--ivory);
}

.top-cat-boy .gate-glyph,
.top-cat-girl .gate-glyph {
  font-size: 40px;
}

.gate-sub {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--taupe);
  text-transform: uppercase;
}

.heart-seam {
  z-index: 5;
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--gold-deep);
  box-shadow: 0 4px 15px rgba(181, 141, 29, 0.25);
}

/* ---------------- SECTION DIVIDER ---------------- */
.section-divider {
  text-align: center;
  padding: 26px 20px 40px;
}

.divider-glyph {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  display: block;
  margin-bottom: 8px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--taupe);
  text-transform: uppercase;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 600;
  margin: 8px 0 16px;
}

.divider-rule {
  width: 70px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.7;
}

#girls .section-title,
#girls .divider-glyph,
#girls .divider-rule {
  color: var(--crimson);
}

#boys .section-title,
#boys .divider-glyph,
#boys .divider-rule {
  color: var(--gold-deep);
}

/* ---------------- PRODUCT GRID ---------------- */
.product-grid {
  max-width: 1280px;
  margin: 0 auto;
  /* padding: 0 clamp(20px, 5vw, 64px) 96px; */
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  align-items: flex-start;
}

.product-grid .product-listing {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  width: 60%;
}

.product-grid .girl-gif {
  width: 40%;
  position: sticky;
  top: 150px;
  align-self: flex-start;
}

.product-grid .girl-gif img {
  height: 470px;
  border-radius: 8px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.product-card .lub {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 90px;
  height: 90px;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 18px 36px rgba(181, 141, 29, 0.15), 0 8px 20px rgba(0, 0, 0, 0.06);
}

.product-media {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media span {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 84px;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.product-card:nth-child(6n + 1) .product-media {
  background: linear-gradient(135deg, #d8b240, #8a6a12);
}

.product-card:nth-child(6n + 2) .product-media {
  background: linear-gradient(135deg, #b8324f, #5e0c1e);
}

.product-card:nth-child(6n + 3) .product-media {
  background: linear-gradient(135deg, #f0ece3, #b58d1d);
}

.product-card:nth-child(6n + 4) .product-media {
  background: linear-gradient(135deg, #8f152f, #f2ece3);
}

.product-card:nth-child(6n + 5) .product-media {
  background: linear-gradient(135deg, #b58d1d, #8f152f);
}

.product-card:nth-child(6n + 0) .product-media {
  background: linear-gradient(135deg, #e8dfd1, #8f152f);
}

.product-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ivory);
}

.product-specs {
  font-size: 10.5px;
  letter-spacing: 1.4px;
  color: var(--taupe);
  text-transform: uppercase;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-deep);
}

.product-price del {
  color: #d32f2f;
}

.buy-btn {
  background: linear-gradient(120deg,
      var(--gold-deep),
      var(--gold),
      var(--gold-light));
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(181, 141, 29, 0.25);
  transition:
    filter 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.buy-btn:hover,
.buy-btn:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(181, 141, 29, 0.35);
}

/* ---------------- FOOTER ---------------- */
footer {
  border-top: 1px solid var(--border);
  background: var(--black-deep);
  padding: 58px clamp(20px, 5vw, 64px) 30px;
  margin-top: 70px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto 40px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand img {
  width: 170px;
  height: 150px;
  /* object-fit: cover; */
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--taupe);
  text-transform: uppercase;
}

.footer-col h4 {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--taupe);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 9px;
  background: none;
  border: none;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  text-align: left;
}

.footer-col a {
  cursor: pointer;
}

.footer-col a:hover {
  color: var(--ivory);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 16px;
  color: var(--taupe);
  letter-spacing: 1px;
}

.age-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-top: 12px;
  background: rgba(181, 141, 29, 0.06);
}

/* ---------------- MODAL ---------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 24, 21, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 34px clamp(24px, 4vw, 40px) 38px;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--taupe);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--ivory);
}

.modal-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--taupe);
  text-transform: uppercase;
}

.modal-product {
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  color: var(--gold-deep);
  margin: 5px 0 26px;
}

.buy-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--taupe);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--ivory);
  padding: 11px 13px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 300;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(181, 141, 29, 0.12);
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-group {
  flex: 1;
}

.submit-btn {
  width: 100%;
  margin-top: 6px;
  background: linear-gradient(120deg,
      var(--crimson-deep),
      var(--crimson),
      var(--crimson-light));
  color: #ffffff;
  border: none;
  padding: 15px;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(143, 21, 47, 0.25);
  transition: filter 0.25s ease, box-shadow 0.25s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(143, 21, 47, 0.35);
}

.form-success {
  display: none;
  text-align: center;
  padding: 34px 6px 10px;
}

.form-success .check {
  font-size: 42px;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.form-success p {
  color: var(--ivory);
  font-size: 15px;
}

/* Quality floor */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive */
@media (max-width: 760px) {
  .threshold-wrap {
    flex-direction: column;
  }

  .gate-girls {
    margin: 0 0 -32px 0;
  }

  .gate-boys {
    margin: 0;
  }

  .heart-seam {
    margin-bottom: -32px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (max-width: 420px) {
  .nav-links {
    gap: 16px;
  }

  .nav-links button {
    font-size: 11.5px;
    letter-spacing: 2px;
  }
}

.wordmark img {
  pointer-events: none;
}

#boys .product-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

#boys .boy-gif {
  width: 40%;
  position: sticky;
  top: 150px;
  align-self: flex-start;
}

#boys .boy-gif img {
  width: 100%;
  height: 470px;
  object-fit: contain;
  border-radius: 8px;
}

#boys .product-listing {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.top-banner img {
  width: 100%;
}

.product-media img {
  width: 100%;
  height: 205px;
}

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   ========================================================================== */

/* Tablet & Smaller Desktop Adjustments (Max-width: 1024px) */
@media (max-width: 1024px) {

  .product-grid,
  #boys .product-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 24px 60px;
  }

  .product-grid .girl-gif,
  #boys .product-grid .boy-gif {
    width: 100%;
    position: static;
    /* Removes sticky behavior so it acts as a header banner */
    max-width: 600px;
  }

  .product-grid .girl-gif img,
  #boys .product-grid .boy-gif img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .product-grid .product-listing,
  #boys .product-listing {
    width: 100%;
  }
}

/* Mobile Layout Fixes (Max-width: 760px) */
@media (max-width: 760px) {

  /* Navigation */
  .navbar {
    height: auto;
    padding: 16px 20px;
    gap: 14px;
    text-align: center;
  }

  .wordmark {
    text-align: center;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  /* Threshold / Gender Gate */
  .threshold-wrap {
    flex-direction: column;
    gap: 0;
  }

  .gate-girls {
    margin: 0 0 -40px 0;
    /* Pulls next elements up clean */
  }

  .heart-seam {
    z-index: 10;
    margin-bottom: -40px;
  }

  .gate-boys {
    margin: 0;
  }

  /* Product Listings */
  .product-grid .product-listing,
  #boys .product-listing {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }

  /* Checkout Form */
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* Footer Layout */
  footer {
    padding: 40px 24px 30px;
    margin-top: 40px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 14px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col a,
  .footer-col p {
    text-align: center;
  }
}

/* Ultra Small Devices (Max-width: 420px) */
@media (max-width: 420px) {
  .nav-links {
    gap: 12px 16px;
  }

  .nav-links button {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  #boys .product-grid {
    flex-direction: column;
  }

  #boys .boy-gif {
    width: 100%;
    position: unset;
  }

  #girls .product-grid .product-listing {
    order: 2;
  }

  #girls .product-grid .girl-gif {
    order: 1;
  }

  .product-grid .product-listing,
  #boys .product-listing {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-card.featured {
    grid-column: 1 / -1;
    margin: 40px 0;
  }

  .product-body {
    text-align: center;
  }

  .product-footer {
    flex-direction: column;
    gap: 8px;
  }
}

/* ---------------- FLOATING BUY NOW BUTTON ---------------- */
.floating-buy-now {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #b58d1d 0%, #f0d488 50%, #b8324f 100%);
  color: #1c1815;
  border: none;
  border-radius: 999px;
  padding: 0 26px 0 20px;
  height: 58px;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 0 0 0 rgba(181, 141, 29, 0.4),
    0 10px 28px rgba(0, 0, 0, 0.15);
  animation: floatBounce 3s ease-in-out infinite, glowPulse 2s ease-in-out infinite;
  transition: transform 0.22s ease, filter 0.22s ease;
  white-space: nowrap;
}

.floating-buy-now:hover,
.floating-buy-now:focus-visible {
  transform: translateY(-4px) scale(1.06);
  filter: brightness(1.08);
  animation-play-state: paused;
}

.floating-buy-now .fbn-icon {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.floating-buy-now::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b58d1d, #b8324f, #b58d1d);
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0.4;
  animation: borderGlow 2s linear infinite;
  filter: blur(6px);
}

@keyframes floatBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(181, 141, 29, 0.4), 0 10px 28px rgba(0, 0, 0, 0.12);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(181, 141, 29, 0), 0 10px 28px rgba(0, 0, 0, 0.12);
  }
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ---------------- SELECT DROPDOWN IN MODAL ---------------- */
.form-group select {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--ivory);
  padding: 11px 13px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b58d1d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background-color: var(--surface);
  box-shadow: 0 0 0 3px rgba(181, 141, 29, 0.12);
}

.form-group select option {
  background: var(--surface);
  color: var(--ivory);
}

.btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
  animation: btn-spin 0.6s linear infinite;
}

.submit-btn.loading .btn-spinner {
  display: inline-block;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.buy-form input:disabled,
.buy-form textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.note-container {
  background-color: #474747;
  border: 1px solid #d32f2f;
  max-width: 560px;
  width: 100%;
  padding: 28px 24px 20px;
  color: #ffffff;
  padding-inline: 50px;
}
/* Heading styling */
.note-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Bulleted List */
.note-list {
  padding-left: 28px;
  margin-bottom: 24px;
}

.note-list li {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 14px;
  color: #fff;
}

.note-list li::marker {
  font-size: 20px;
}

/* Hindi Subtext formatting */
.hindi-text {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-weight: 400;
}

/* Bottom Highlight Line */
.note-footer {
  text-align: center;
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #fff;
  margin-top: 8px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 480px) {
  .note-container {
    padding: 20px 16px 16px;
  }
  
  .note-title {
    font-size: 20px;
  }

  .note-list {
    padding-left: 20px;
  }

  .note-list li {
    font-size: 16px;
  }

  .note-footer {
    font-size: 18px;
  }
}


.top-header {
    position: sticky;
    top: 0;
    z-index: 999;
}


/* ---------------- AUTO RELOAD MODAL ---------------- */
.reload-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 24, 21, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}

.reload-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.reload-modal-box {
  background: #ffffff;
  border: 1.5px solid rgba(181, 141, 29, 0.35); /* Elegant gold border */
  border-radius: 12px;
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 34px 26px 24px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s ease;
}

.reload-modal-overlay.active .reload-modal-box {
  transform: translateY(0) scale(1);
}

/* Close Button */
.reload-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  color: #6e6458;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.reload-modal-close:hover {
  color: #8f152f;
  transform: scale(1.15);
}

/* Content Typography */
.reload-modal-box .note-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #8f152f;
  margin-bottom: 16px;
}

.reload-modal-box .note-list {
  padding-left: 24px;
  margin-bottom: 22px;
}

.reload-modal-box .note-list li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #1c1815;
}

.reload-modal-box .note-list li::marker {
  color: #b58d1d;
  font-size: 18px;
}

.reload-modal-box .hindi-text {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-weight: 400;
}

.reload-modal-box .note-footer {
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #8a6a12;
  padding-top: 16px;
  border-top: 1px dashed rgba(181, 141, 29, 0.35);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .reload-modal-box {
    padding: 28px 18px 18px;
  }

  .reload-modal-box .note-list li {
    font-size: 14.5px;
  }

  .reload-modal-box .note-footer {
    font-size: 16px;
  }
}

.floating_btn {
    align-items: flex-end;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    position: fixed;
    right: 31px;
    transform: translateY(0);
    transition: 2s;
    z-index: 99999;
}

.whatsapp-btn {
    align-items: center;
    aspect-ratio: 1/1;
    background-image: linear-gradient(30deg,#30d14e 50%,#0000 0);
    background-position: 0;
    background-repeat: no-repeat;
    background-size: 600px;
    border-radius: 50px;
    display: flex;
    font-size: 25px;
    height: 50px;
    justify-content: center;
    position: relative;
    transition: background .3s ease-in-out;
    width: 50px;
}

.whatsapp-btn:before {
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation: pulse 1.8s ease-out;
    animation-iteration-count: infinite;
    background-color: #30d14e;
    border-radius: 50px;
    content: " ";
    height: 100%;
    left: 0;
    opacity: .6;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.floating_btn .whatsapp-btn svg {
    margin: 0;
}