/* =======================
   FONT SETUP (KRUTI DEV)
   ======================= */

/* Place your Kruti Dev 042 font files in a "fonts" folder */
@font-face {
  font-family: "KrutiDev042";
  src: url("fonts/KrutiDev042.woff2") format("woff2"),
       url("fonts/KrutiDev042.woff") format("woff");
  font-display: swap;
}

:root {
  --font-hindi-body: "KrutiDev042", system-ui, sans-serif;
  --font-hindi-heading: "KrutiDev042", system-ui, sans-serif;
  --font-english-logo: system-ui, sans-serif;

  --bg-main: #050509;
  --bg-alt: #0b0b12;
  --bg-card: #10101a;
  --bg-soft: #1a1a26;

  --accent-pink: #ff2e63;
  --accent-pink-soft: rgba(255, 46, 99, 0.16);

  --text-main: #f4f4ff;
  --text-muted: #b8b8cc;

  --border-subtle: rgba(255, 255, 255, 0.1);
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
}

/* =======================
   GENERAL / RESET
   ======================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-hindi-body);
  background: radial-gradient(circle at top, #181822 0, #050509 55%);
  color: var(--text-main);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.heading-hi {
  font-family: var(--font-hindi-heading);
}

.body-hi {
  font-family: var(--font-hindi-body);
}

.logo-en {
  font-family: var(--font-english-logo);
}

/* =======================
   TOPBAR & HEADER
   ======================= */

.topbar {
  background: linear-gradient(90deg, var(--accent-pink), #ff7b7b);
  color: white;
  text-align: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(5, 5, 9, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.25rem;
}

.site-title {
  display: flex;
  flex-direction: column;
}

.site-title-en {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-pink);
}

/* Hindi site title — gradient like reference site */
.site-title-hi {
  font-size: 24px;
  margin-top: 2px;

  background: linear-gradient(
    90deg,
    #ff2e63,
    #ff6f91,
    #ffc371
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  font-weight: 600;
}


.header-icons {
  display: flex;
  gap: 0.4rem;
}

.icon-btn {
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: rgba(10, 10, 18, 0.9);
  color: var(--text-main);
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.cart-count {
  margin-left: 0.25rem;
  padding: 0.1rem 0.3rem;
  border-radius: var(--radius-pill);
  background: var(--accent-pink);
  font-size: 0.8rem;
}

/* =======================
   CIRCULAR CATEGORY BAR
   ======================= */

.category-strip {
  border-bottom: 1px solid var(--border-subtle);
  background: #050509;
}

.category-strip-inner {
  overflow: hidden;
  padding: 0.75rem 0;
}

.category-track {
  display: inline-flex;
  gap: 0.9rem;
  padding: 0 1.25rem;
  will-change: transform;
}

.category-tile {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-main);
  cursor: pointer;
  gap: 0.35rem;
}

.category-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid var(--accent-pink-soft);
  overflow: hidden;
  background: #14141f;
}

.category-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =======================
   GREY CATEGORY BLOCKS
   ======================= */

.block-categories {
  padding: 2.5rem 0 1.5rem;
}

.block-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.block-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.block-image {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  object-fit: cover;
  display: block;
}

.block-content {
  padding: 0.9rem 1rem 1rem;
}

.block-title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.block-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =======================
   PRODUCT SECTIONS
   ======================= */

.products-section {
  padding: 2.5rem 0 1.5rem;
}

.section-header {
  margin-bottom: 1.25rem;
}

.section-header-center {
  text-align: center;
}

.section-title {
  margin: 0 0 0.3rem;
  font-size: 1.3rem;
}

.section-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* DESKTOP GRID: 1 ROW, 6 COLS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 0.7rem 0.8rem 0.9rem;
  box-shadow: var(--shadow-soft);
}

.product-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  background: #171724;
}

.product-image {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.product-title {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.product-price {
  margin: 0;
  color: var(--accent-pink);
  font-size: 0.9rem;
}

.section-footer {
  margin-top: 1.1rem;
  text-align: center;
}

.btn-view-all {
  display: inline-block;
  padding: 0.5rem 1.3rem;
  border: 1px solid var(--accent-pink);
  border-radius: var(--radius-pill);
  color: var(--accent-pink);
  text-decoration: none;
  font-size: 0.9rem;
}

/* =======================
   REVIEWS & NEWS
   ======================= */

.reviews-section,
.news-section {
  padding: 2.7rem 0 2rem;
  background: var(--bg-alt);
}

.reviews-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.review-card,
.news-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
}

.review-text,
.news-text {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.review-meta,
.news-source {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =======================
   FAQ
   ======================= */

.faq-section {
  padding: 2.7rem 0 2.2rem;
}

.faq-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: var(--text-main);
  font-size: 0.9rem;
}

.faq-toggle-icon {
  font-size: 1rem;
  margin-left: 0.8rem;
}

.faq-answer {
  display: none;
  padding: 0 0.9rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  display: block;
  padding: 0.6rem 0.9rem 0.8rem;
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(45deg);
}

/* =======================
   SOCIALS & FOOTER
   ======================= */

.socials-section {
  padding: 2.5rem 0 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
}

.socials-inner {
  text-align: center;
}

.socials-list {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.9rem;
}

.footer {
  padding: 1.2rem 0 1.5rem;
  background: #020207;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* =======================
   RESPONSIVE RULES
   ======================= */

@media (max-width: 900px) {
  .block-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding-inline: 0.9rem;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
}
/* Center "See All" button — localized change */
.section-footer {
  display: flex;
  justify-content: center;
}
/* =====================================================
   UPDATED USER REVIEWS (MATCHED TO REFERENCE)
   ===================================================== */

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.review-box {
  background: radial-gradient(
    circle at top,
    rgba(255,255,255,0.06),
    rgba(20,20,31,1)
  );
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 20px 40px rgba(0,0,0,0.5);
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: #eaeaea;
  margin: 0 0 14px;
}

.review-meta {
  font-size: 14px;
  color: #b5b5b5;
  margin: 0;
}
/* =====================================================
   MEDIA MENTIONS — MATCHED TO REFERENCE
   ===================================================== */

.media-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.media-box {
  background: radial-gradient(
    circle at top,
    rgba(255,255,255,0.06),
    rgba(20,20,31,1)
  );
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 20px 40px rgba(0,0,0,0.5);
}

.media-source {
  font-size: 14px;
  color: #ff6f91;
  margin: 0 0 8px;
  letter-spacing: 0.5px;
}

.media-text {
  font-size: 16px;
  line-height: 1.6;
  color: #eaeaea;
  margin: 0;
}
/* =====================================================
   SOCIALS SECTION
   ===================================================== */

.socials-section {
  padding: 40px 0 20px;
}

.socials-list {
  text-align: center;
  color: #ccc;
  line-height: 1.8;
}
.product-card {
  text-decoration: none;
  color: inherit;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* ===== 3D COVERFLOW SECTION - INSERT THIS BLOCK ===== */
.coverflow-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverflow-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    position: relative;
}

.coverflow {
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
    height: 400px;
}

.coverflow-item {
    position: absolute;
    width: 280px;
    height: 280px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    user-select: none;
}

.coverflow-item .cover {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    background: #333;
}

.coverflow-item .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.coverflow-item .reflection {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transform: scaleY(-1);
    opacity: 0.25;
    filter: blur(2px);
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.8) 50%, 
        rgba(0, 0, 0, 1) 100%);
    overflow: hidden;
    pointer-events: none;
}

.tile-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    width: 90%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.coverflow-item.active {
    z-index: 100;
    transform: translateX(0) translateZ(0) rotateY(0deg) !important;
}

.coverflow-item.active .cover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 200;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.nav-button.prev { left: 50px; }
.nav-button.next { right: 50px; }

.dots-container {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 200;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.image-loading {
    background: linear-gradient(45deg, #333, #555);
    position: relative;
}

.image-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .coverflow-item { width: 200px; height: 200px; }
    .nav-button { width: 45px; height: 45px; font-size: 18px; }
    .nav-button.prev { left: 20px; }
    .nav-button.next { right: 20px; }
    .coverflow { height: 300px; }
}

@media (max-width: 480px) {
    .coverflow-item { width: 180px; height: 180px; }
}
/* ===== END 3D COVERFLOW CSS ===== */
/* ===== BLOCK LINK STYLES - ADD TO YOUR CSS ===== */

.block-link:hover {
    transform: translateY(-8px) !important;
    text-decoration: none !important;
}

/* Ensure block-card becomes clickable container */
.block-card {
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

.block-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Remove underlines from all text inside links */
.block-link h2,
.block-link p,
.block-link *,
.block-content h2,
.block-content p {
    text-decoration: none !important;
    color: inherit !important;
}

/* Hover text effects */
.block-link:hover .block-title {
    color: #667eea !important;  /* Your brand color */
    transform: translateY(-2px);
}

.block-link:hover .block-text {
    color: #ffffff !important;
}

/* Ensure images don't interfere */
.block-image {
    pointer-events: none;  /* Image doesn't block clicks */
}
/* ===== END BLOCK LINK CSS ===== */
section {
  margin-bottom: 80px;
}
.qna-section {
  max-width:900px;
  margin: 0 auto 80px;
  padding: 0 16px;
}
.qna-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 20px 22px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.qna-question {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.qna-answer {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85)
  line-height 1.6;
}
.block-card {
  position: relative; 
  border-radius: var(--radius-lg);/* REQUIRED */
  overflow: hidden;
}
.block-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.block-image {
  pointer-events: none;
}
.product-image-wrap {
  height: 130px;   /* ADD THIS */
}
/* =========================
   CATEGORY PAGE
   ========================= */

.category-page-title {
  padding: 2rem 0 1rem;
}

.category-title {
  font-size: 1.5rem;
  color: #ffffff;
}

/* GRID */
.category-products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

/* PRODUCT CARD */
.category-product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}

/* IMAGE */
.category-product-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

/* TITLE */
.category-product-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.4rem;
  line-height: 1.35;
}

/* META */
.category-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.category-product-meta .product-code {
  color: #ffffff;
  font-size: 0.85rem;
}

.category-product-meta .product-price {
  color: var(--accent-pink);
  font-size: 0.9rem;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .category-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .category-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.category-description {
  max-width: 680px;
  margin: 0.75rem auto 2rem;
  text-align: center;
}

.category-description p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}
/* =====================
   PAYMENTS PAGE
   ===================== */

.payment-title {
  text-align: center;
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
}

.payment-disclaimer {
  background: rgba(255, 46, 99, 0.12);
  border: 1px solid rgba(255, 46, 99, 0.3);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.payment-steps p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* QR */
.qr-wrapper {
  position: relative;
  max-width: 320px;
  margin: 1.5rem auto;
}

.qr-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  border-radius: 12px;
}

.qr-download-btn {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 44px;
  height: 44px;
  background: var(--accent-pink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
}

/* FORM */
.payment-form {
  max-width: 420px;
  margin: 2rem auto 0;
}

.form-field {
  margin-bottom: 1.2rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-field input {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: #fff;
}

/* BUTTON */
#orderBtn {
  margin-top: 1.2rem;
  width: 100%;
  padding: 0.7rem;
  border-radius: 999px;
  border: none;
  background: var(--accent-pink);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.5;
}

#orderBtn:enabled {
  opacity: 1;
}

/* QR MODAL */
.qr-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.qr-modal img {
  width: 90%;
  max-width: 420px;
  border-radius: 16px;
}
/* =====================
   ORDER STATUS PAGE
   ===================== */

.order-status-section {
  padding: 3rem 0 2rem;
}

.order-status-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.order-status-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.order-status-box p {
  margin-bottom: 1rem;
}

.order-status-box strong {
  color: #ffffff;
}

.order-status-action {
  margin-top: 2rem;
  text-align: center;
}

.btn-home {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  background: var(--accent-pink);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
}
.qr-image {
  pointer-events: auto;
}
/* =====================
   UPI PAYMENT LINK
   ===================== */

.upi-link-wrapper {
  max-width: 420px;
  margin: 1.5rem auto;
  text-align: center;
}

.upi-pay-btn {
  display: inline-block;
  margin: 0.75rem 0;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: var(--accent-pink);
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
}

.upi-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.payment-warning {
  color: #ff6b6b;
  text-align: center;
  margin: 1rem auto;
  max-width: 420px;
  font-size: 0.95rem;
}
/* =====================
   HERO TEXT SECTION
   ===================== */

.hero-text {
  padding: 2.2rem 0 1.6rem;
  text-align: center;
}

.hero-text-inner {
  max-width: 820px;
}

.hero-heading {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

.hero-subtext {
  margin: 0.25rem 0;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.6;
  color: var(--text-main);
}

.hero-subtext.muted {
  color: var(--text-muted);
}
/* =====================
   BMAC INFO BLOCK
   ===================== */

.bmac-info {
  max-width: 520px;
  margin: 2rem auto 2.2rem;
  text-align: center;
}

.bmac-main {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.bmac-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.bmac-btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  background: #ffdd00;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.bmac-btn:hover {
  transform: translateY(-2px);
}