:root {
   --primary-bg: #000000;
   --secondary-bg: #111111;
   --accent: #1e6cff;
   --accent-soft: rgba(255, 255, 255, 0.12);
   --text-main: #ffffff;
   --text-muted: #b3b3b3;
   --border-subtle: #222222;
   --danger: #ff3b3b;
   --success: #28c76f;
   --bg-intensity: 0.15;
}
/* Reset */
* {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}
body {
   background: var(--primary-bg);
   color: var(--text-main);
   font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
   line-height: 1.6;
   position: relative; /* for overlay */
}
/* Full-page gradient overlay */
body::before {
   content: "";
   position: fixed;
   inset: 0;
   pointer-events: none;
   z-index: -1;
   background:
       radial-gradient(
           circle at top center,
           rgba(255, 255, 255, 0.18),
           transparent 60%
       ),
       radial-gradient(
           circle at bottom right,
           rgba(30, 108, 255, var(--bg-intensity)),
           transparent 65%
       );
   mix-blend-mode: screen;
}
/* Logo watermark */
body::after {
   content: "";
   position: fixed;
   inset: 0;
   pointer-events: none;
   z-index: -1;
   background: url('../img/risk-takers-transparent.png') center / 50% auto no-repeat;
   opacity: calc(var(--bg-intensity) * 0.85);
   mix-blend-mode: soft-light;
}

body.menu-open::before, body.menu-open::after{
   display: none;
}

a {
   color: inherit;
   text-decoration: none;
}
img {
   max-width: 100%;
   display: block;
}
.page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
}
/* Announcement bar */
.announcement-bar {
   background: #ffffff;
   color: #000;
   text-align: center;
   padding: 0.55rem 1rem;
   font-size: 0.85rem;
   letter-spacing: 0.06em;
   text-transform: uppercase;
   font-weight: 500;
}
/* Header + nav */
header {
   background: rgba(0, 0, 0, 0.94);
   backdrop-filter: blur(12px);
   border-bottom: 1px solid var(--border-subtle);
   position: sticky;
   top: 0;
   z-index: 1000;
}
.nav {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0.9rem 1.25rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1.5rem;
}
.brand {
   display: flex;
   align-items: center;
   gap: 0.75rem;
}
.brand-logo {
   height: 110px;
   width: 110px;
   border-radius: 50%;
   object-fit: contain;
}
.about-shop-grid {
   display: grid;
   grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.8fr);
   gap: 3rem;
   align-items: start;
}
.about-shop-left {
   min-width: 0;
}
.about-shop-right {
   display: flex;
   justify-content: flex-end;
   align-items: flex-start;
   margin-right: 40px;
   padding-top: -20px;
}
.about-shop-logo {
   width: 350px;
   height: auto;
   object-fit: contain;
   border-radius: 0;
   border: none;
}
.brand-mark {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   border: 1px solid var(--accent);
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 600;
   font-size: 0.9rem;
}
.brand-text {
   display: flex;
   flex-direction: column;
   gap: 0.1rem;
}
.brand-name {
   font-size: 0.95rem;
   font-weight: 600;
   letter-spacing: 0.08em;
   text-transform: uppercase;
}
.brand-tagline {
   font-size: 0.7rem;
   color: var(--text-muted);
}
/* Desktop nav links */
.nav-links {
   display: flex;
   align-items: center;
   gap: 1rem;
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 0.12em;
   margin-left: 5.5rem;
}
.nav-links a {
   padding: 0.25rem 0.4rem;
   border-radius: 999px;
   transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover {
   background: var(--accent-soft);
   color: var(--accent);
}
.nav-cta {
   padding: 0.35rem 1rem;
   border-radius: 999px;
   border: 1px solid var(--accent);
   font-size: 0.75rem;
   text-transform: uppercase;
   letter-spacing: 0.16em;
}

/* Layout */
main {
   flex: 1;
}
section {
   padding: 4rem 1.5rem;
}
.section-inner {
   max-width: 1200px;
   margin: 0 auto;
}
.section-heading {
   text-transform: uppercase;
   letter-spacing: 0.18em;
   font-size: 0.78rem;
   color: var(--text-muted);
   margin-bottom: 0.5rem;
}
.section-title {
   font-size: 1.8rem;
   font-weight: 600;
   margin-bottom: 1rem;
}
.section-subtitle {
   color: var(--text-muted);
   max-width: 640px;
   font-size: 0.95rem;
}
/* Hero */
.hero {
   padding-top: 3rem;
   padding-bottom: 3.5rem;
   background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 55%);
}
.hero-grid {
   display: grid;
   grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
   gap: 2.5rem;
   align-items: center;
}
.hero-kicker {
   text-transform: uppercase;
   letter-spacing: 0.16em;
   font-size: 0.78rem;
   color: var(--text-muted);
   margin-bottom: 0.8rem;
}
.hero-title {
   font-size: clamp(2.1rem, 3vw, 2.8rem);
   font-weight: 600;
   line-height: 1.1;
   margin-bottom: 0.75rem;
}
.hero-tagline {
   font-size: 0.95rem;
   color: var(--text-muted);
   max-width: 540px;
   margin-bottom: 1.2rem;
}
.hero-slogan {
   font-size: 0.9rem;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--accent);
   margin-bottom: 1.5rem;
}
.hero-ctas {
   display: flex;
   flex-wrap: wrap;
   gap: 0.75rem;
   margin-bottom: 1.4rem;
}
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.75rem 1.6rem;
   border-radius: 999px;
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 0.16em;
   border: 1px solid transparent;
   cursor: pointer;
   transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
   white-space: nowrap;
}
.btn-primary {
   background: var(--accent);
   color: #000;
   border-color: var(--accent);
}
.btn-primary:hover {
   box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
   transform: translateY(-1px);
}
.btn-outline {
   border-color: var(--border-subtle);
   color: var(--text-main);
   background: transparent;
}
.btn-outline:hover {
   border-color: var(--accent);
   background: var(--accent);
}
.hero-meta {
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
   font-size: 0.8rem;
   color: var(--text-muted);
}
.hero-meta-item span {
   display: block;
}
.hero-meta-label {
   text-transform: uppercase;
   letter-spacing: 0.16em;
   font-size: 0.7rem;
   margin-bottom: 0.2rem;
   color: #777;
}
.hero-meta-value {
   font-size: 0.9rem;
   color: #fff;
}
.hero-card {
   border-radius: 18px;
   padding: 1.5rem;
   background: linear-gradient(145deg, #050505, #131313);
   border: 1px solid var(--border-subtle);
   box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
}
.hero-card-heading {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 1rem;
   gap: 0.75rem;
}
.hero-card-title {
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 0.18em;
}
.hero-chip {
   font-size: 0.75rem;
   padding: 0.25rem 0.7rem;
   border-radius: 999px;
   border: 1px solid var(--accent);
   color: var(--accent);
   text-transform: uppercase;
   letter-spacing: 0.16em;
}
.hero-card-body {
   font-size: 0.85rem;
   color: var(--text-muted);
   margin-bottom: 1rem;
}
.hero-card-highlight {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 0.5rem;
   margin-bottom: 1rem;
   font-size: 0.78rem;
}
.pill {
   border-radius: 999px;
   border: 1px solid var(--border-subtle);
   padding: 0.4rem 0.8rem;
   text-align: center;
}
.pill strong {
   text-transform: uppercase;
   letter-spacing: 0.16em;
   font-size: 0.7rem;
}
.hero-note {
   font-size: 0.75rem;
   color: var(--text-muted);
}
/* Columns & cards */
.two-column {
   display: grid;
   grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
   gap: 2.4rem;
   align-items: start;
}
.card {
   border-radius: 18px;
   background: var(--secondary-bg);
   border: 1px solid var(--border-subtle);
   padding: 1.5rem;
}
.card-title {
   font-size: 1rem;
   font-weight: 500;
   margin-bottom: 0.7rem;
}
.card-body {
   font-size: 0.9rem;
   color: var(--text-muted);
}
/* Shop preview */
.badge-row {
   display: flex;
   flex-wrap: wrap;
   gap: 0.5rem;
   margin-bottom: 1.25rem;
}
.badge {
   font-size: 0.75rem;
   padding: 0.25rem 0.7rem;
   border-radius: 999px;
   border: 1px solid var(--border-subtle);
   text-transform: uppercase;
   letter-spacing: 0.14em;
   color: var(--text-muted);
}
.badge-accent {
   border-color: var(--accent-soft);
   background: var(--accent-soft);
   color: var(--accent);
}
.product-grid {
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: 1.5rem;
}
.product-card {
   border-radius: 16px;
   overflow: hidden;
   background: var(--secondary-bg);
   border: 1px solid var(--border-subtle);
   display: flex;
   flex-direction: column;
}
.product-media {
   background: #1a1a1a;
   padding: 1.3rem;
   min-height: 160px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.8rem;
   color: var(--text-muted);
   text-align: center;
}
.product-body {
   padding: 0.9rem 1rem 1.1rem;
   display: flex;
   flex-direction: column;
   gap: 0.25rem;
}
.product-title {
   font-size: 0.9rem;
   font-weight: 500;
}
.product-meta {
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-size: 0.8rem;
   color: var(--text-muted);
}
.product-price {
   font-weight: 500;
   color: #ffffff;
}
.product-tag {
   font-size: 0.7rem;
   text-transform: uppercase;
   letter-spacing: 0.16em;
}
.category-filter {
   cursor: pointer;
   user-select: none;
}
.category-filter.is-active {
   background: #1e6cff;
   color: #000000;
}
/* Newsletter */
.newsletter {
   background: radial-gradient(circle at bottom, rgba(255, 255, 255, 0.08), transparent 60%);
}
.newsletter-grid {
   display: grid;
   grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
   gap: 2.2rem;
   align-items: center;
}
.newsletter-form {
   display: flex;
   flex-wrap: wrap;
   gap: 0.7rem;
   margin-top: 1.4rem;
}
.input {
   border-radius: 999px;
   border: 1px solid var(--border-subtle);
   background: #050505;
   padding: 0.7rem 1rem;
   color: var(--text-main);
   font-size: 0.85rem;
   flex: 1;
   min-width: 180px;
}
.input::placeholder {
   color: #666;
}
.newsletter-note {
   margin-top: 0.8rem;
   font-size: 0.8rem;
   color: var(--text-muted);
}
/* Contact */
.contact-grid {
   display: grid;
   grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
   gap: 2.2rem;
}
.contact-form {
   display: flex;
   flex-direction: column;
   gap: 0.9rem;
}
.field-group {
   display: flex;
   flex-direction: column;
   gap: 0.35rem;
}
.label {
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 0.14em;
   color: var(--text-muted);
}
.textarea {
   border-radius: 16px;
   border: 1px solid var(--border-subtle);
   background: #050505;
   padding: 0.7rem 1rem;
   color: var(--text-main);
   font-size: 0.85rem;
   min-height: 120px;
   resize: vertical;
}
.contact-note {
   font-size: 0.8rem;
   color: var(--text-muted);
   margin-top: 0.5rem;
}
.social-list {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 0.55rem;
   font-size: 0.85rem;
}
.social-list a {
   color: var(--text-muted);
}
.social-list a span {
   text-transform: uppercase;
   letter-spacing: 0.16em;
   font-size: 0.7rem;
   color: #777;
   margin-right: 0.5rem;
}
/* Misc sections */
.pill-row {
   display: flex;
   flex-wrap: wrap;
   gap: 0.4rem;
   margin-top: 0.75rem;
   font-size: 0.75rem;
}
/* Policies */
.policies {
   background: #050505;
}
.policies-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 2.2rem;
}
.policy-block h3 {
   font-size: 1rem;
   margin-bottom: 0.6rem;
}
.policy-block p,
.policy-block ul {
   font-size: 0.85rem;
   color: var(--text-muted);
   margin-bottom: 0.5rem;
}
.policy-block ul {
   padding-left: 1.1rem;
}
.policy-block li {
   margin-bottom: 0.35rem;
}
/* Footer */
footer {
   border-top: 1px solid var(--border-subtle);
   padding: 1.5rem;
   font-size: 0.8rem;
   color: var(--text-muted);
}
.footer-inner {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   justify-content: space-between;
   align-items: center;
}
.footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
}
.footer-links a {
   text-transform: uppercase;
   letter-spacing: 0.16em;
   font-size: 0.72rem;
}
/* Chat widget */
.chat-badge {
   position: fixed;
   right: 1.2rem;
   bottom: 1.2rem;
   background: var(--accent);
   color: #000;
   padding: 0.7rem 1.1rem;
   border-radius: 999px;
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 0.14em;
   cursor: pointer;
   box-shadow: 0 12px 30px rgba(0,0,0,0.7);
   z-index: 120;
}
/* Cart panel */
.cart-panel {
   position: fixed;
   inset: 0 0 0 auto;
   width: 0;
   background: rgba(0, 0, 0, 0.6);
   backdrop-filter: blur(6px);
   display: flex;
   justify-content: flex-end;
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.2s ease, width 0.2s ease;
   z-index: 9999;
}
.cart-panel.open {
   width: 100%;
   opacity: 1;
   pointer-events: auto;
}
.cart-panel-inner {
   width: min(360px, 100%);
   background: #050505;
   border-left: 1px solid var(--border-subtle);
   padding: 1.25rem 1.25rem 1.5rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
   z-index: 10000;
}
.cart-panel-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-bottom: 1px solid var(--border-subtle);
   padding-bottom: 0.5rem;
}
.cart-panel-header h2 {
   font-size: 1rem;
   text-transform: uppercase;
   letter-spacing: 0.18em;
}
.cart-close {
   background: none;
   border: none;
   color: var(--text-main);
   font-size: 1.4rem;
   cursor: pointer;
}
.cart-items {
   flex: 1;
   max-height: 340px;
   overflow-y: auto;
   padding-right: 0.25rem;
}
.cart-item {
   display: grid;
   grid-template-columns: 1fr auto;
   gap: 0.4rem 0.6rem;
   padding: 0.6rem 0;
   border-bottom: 1px solid var(--border-subtle);
   font-size: 0.85rem;
}
.cart-item-title {
   font-weight: 500;
}
.cart-item-meta {
   color: var(--text-muted);
   font-size: 0.8rem;
}
.cart-item-controls {
   display: flex;
   align-items: center;
   gap: 0.4rem;
   justify-self: flex-end;
}
.cart-qty-btn {
   width: 22px;
   height: 22px;
   border-radius: 999px;
   border: 1px solid var(--border-subtle);
   background: transparent;
   color: var(--text-main);
   font-size: 0.8rem;
   cursor: pointer;
}
.cart-remove {
   border: none;
   background: none;
   color: var(--text-muted);
   font-size: 0.75rem;
   cursor: pointer;
}
.cart-panel-footer {
   border-top: 1px solid var(--border-subtle);
   padding-top: 0.75rem;
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
}
.cart-summary {
   display: flex;
   justify-content: space-between;
   font-size: 0.9rem;
}
.cart-note {
   font-size: 0.75rem;
   color: var(--text-muted);
}

/* ===== Gallery: Slider + Lightbox ===== */
.rt-slider {
 position: relative;
 margin-top: 1.25rem;
 border: 1px solid var(--border-subtle);
 border-radius: 18px;
 background: linear-gradient(145deg, #050505, #131313);
 overflow: hidden;
}
.rt-slider-track {
 display: flex;
 gap: 0;
 overflow-x: auto;
 scroll-snap-type: x mandatory;
 scroll-behavior: smooth;
}
.rt-slide {
 min-width: 100%;
 scroll-snap-align: start;
 display: block;
 position: relative;
}
.rt-slide img {
 width: 100%;
 height: 520px;
 object-fit: cover;
 display: block;
}
.rt-slide-video {
 padding: 1rem;
}
.rt-slide-video video {
 width: 100%;
 height: 520px;
 object-fit: contain;
 background: #000;
 border-radius: 12px;
}
.rt-slider-btn {
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 z-index: 2;
 width: 50px;
 height: 50px;
 font-size:32px;
 border-radius: 999px;
 border: 1px solid var(--border-subtle);
 background: rgba(0, 0, 0, 0.65);
 color: var(--text-main);
 cursor: pointer;
 
}
.rt-prev { left: 12px; }
.rt-next { right: 12px; }
.rt-gallery-grid {
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 1rem;
}
.rt-thumb {
 border-radius: 14px;
 overflow: hidden;
 border: 1px solid var(--border-subtle);
 background: #0b0b0b;
}
.rt-thumb img {
 width: 100%;
 height: 180px;
 object-fit: cover;
 display: block;
 transition: transform 0.25s ease;
}
.rt-thumb:hover img {
 transform: scale(1.03);
}
/* Lightbox */
.rt-lightbox {
 position: fixed;
 inset: 0;
 background: rgba(0,0,0,0.85);
 display: none;
 align-items: center;
 justify-content: center;
 z-index: 9999;
 padding: 1.25rem;
}
.rt-lightbox.open {
 display: flex;
}
.rt-lightbox img {
 max-width: min(1100px, 95vw);
 max-height: 85vh;
 border-radius: 16px;
 border: 1px solid var(--border-subtle);
 background: #000;
}
.rt-lightbox-close {
 position: absolute;
 top: 16px;
 right: 16px;
 width: 44px;
 height: 44px;
 border-radius: 999px;
 border: 1px solid var(--border-subtle);
 background: rgba(0,0,0,0.55);
 color: #fff;
 font-size: 26px;
 cursor: pointer;
}
/* Responsive */
@media (max-width: 1050px) {
 .rt-slide img,
 .rt-slide-video video { height: 420px; }
 .rt-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
 .rt-slide img,
 .rt-slide-video video { height: 320px; }
 .rt-gallery-grid { grid-template-columns: 1fr; }
}

/* ============================
  Newsletter / Spin Wheel Popup
  ============================ */
.rtw-popup {
   position: fixed;
   inset: 0;
   display: none; /* shown via JS */
   align-items: center;
   justify-content: center;
   z-index: 200;
}
.rtw-popup.visible {
   display: flex;
}
.rtw-popup-backdrop {
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.7);
   backdrop-filter: blur(6px);
}
.rtw-popup-modal {
   position: relative;
   z-index: 201;
   width: min(640px, 100% - 32px);
   background: #111111;
   border-radius: 18px;
   border: 1px solid var(--border-subtle);
   padding: 1.8rem 1.8rem 1.6rem;
   box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}
.rtw-popup-close {
   position: absolute;
   top: 0.6rem;
   right: 0.8rem;
   background: none;
   border: none;
   color: var(--text-muted);
   font-size: 1.4rem;
   cursor: pointer;
}
.rtw-popup-grid {
   display: grid;
   grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
   gap: 1.6rem;
   align-items: center;
}
.rtw-popup-text h2 {
   margin: 0 0 0.5rem 0;
   font-size: 1.4rem;
   font-weight: 600;
}
.rtw-popup-text p {
   margin: 0 0 0.9rem 0;
   font-size: 0.9rem;
   color: var(--text-muted);
}
.rtw-popup-btn {
   margin-bottom: 0.4rem;
}
.rtw-popup-note {
   font-size: 0.78rem;
   color: #888888;
}
/* Wheel visuals */
.rtw-popup-wheel-wrap {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 0.75rem;
}
.rtw-wheel-container {
   position: relative;
}
.rtw-wheel {
   width: 180px;
   height: 180px;
   border-radius: 50%;
   border: 2px solid var(--accent);
   background:
       conic-gradient(
           from 0deg,
           #1e6cff 0deg 45deg,
           #111111 45deg 90deg,
           #1e6cff 90deg 135deg,
           #111111 135deg 180deg,
           #1e6cff 180deg 225deg,
           #111111 225deg 270deg,
           #1e6cff 270deg 315deg,
           #111111 315deg 360deg
       );
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: transform 4s cubic-bezier(0.23, 1, 0.32, 1);
}
.rtw-wheel-center {
   width: 64px;
   height: 64px;
   border-radius: 50%;
   background: #000000;
   border: 2px solid #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.65rem;
   color: #ffffff;
}
.rtw-spin-button {
   margin-top: 0.4rem;
   width: 100%;
}
.rtw-spin-button[disabled] {
   opacity: 0.6;
   cursor: default;
}
.rtw-wheel-result {
   font-size: 0.85rem;
   color: var(--text-muted);
   text-align: center;
   min-height: 1.4em;
}
/* Small screens */
@media (max-width: 720px) {
   .rtw-popup-modal {
       padding: 1.4rem 1.3rem 1.2rem;
   }
   .rtw-popup-grid {
       grid-template-columns: minmax(0, 1fr);
   }
   .rtw-wheel {
       width: 160px;
       height: 160px;
   }
}
/* ========== RESPONSIVE BREAKPOINTS ========== */
@media (max-width: 1050px) {
   .hero-grid,
   .two-column,
   .newsletter-grid,
   .contact-grid,
   .policies-grid,
   .about-shop-grid {
       grid-template-columns: minmax(0, 1fr);
   }
   .product-grid {
       grid-template-columns: repeat(2, minmax(0, 1fr));
   }
}
@media (max-width: 640px) {
   section {
       padding: 3rem 1.25rem;
   }
   .product-grid {
       grid-template-columns: minmax(0, 1fr);
   }
   .hero {
       padding-top: 2.2rem;
   }
   .section-title {
       font-size: 1.5rem;
   }
   .chat-badge {
       font-size: 0.72rem;
       padding: 0.6rem 0.9rem;
   }
}
/* ===== MOBILE NAV – REVERT TO WORKING VERSION ===== */
@media (max-width: 840px) {
 /* Keep header above menu */
 header {
   position: sticky;
   top: 0;
   z-index: 1000;
 }
 /* Show hamburger */
 .nav-toggle {
   display: flex;
   width: 28px;
   height: 28px;
   position: relative;
   cursor: pointer;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   z-index: 1200; /* so the X is clickable over the menu */
 }
 .nav-toggle span {
   position: absolute;
   width: 100%;
   height: 2px;
   background: var(--text-main);
   transition: transform 0.25s ease, opacity 0.25s ease;
 }
 /* Burger lines */
 .nav-toggle span:nth-child(1) { transform: translateY(-6px); }
 .nav-toggle span:nth-child(2) { transform: translateY(0); }
 .nav-toggle span:nth-child(3) { transform: translateY(6px); }
 /* Burger → X */
 .nav-toggle.open span:nth-child(1) { transform: rotate(45deg); }
 .nav-toggle.open span:nth-child(2) { opacity: 0; }
 .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg); }
 /* FULL-WIDTH DROPDOWN UNDER ANNOUNCEMENT BAR (THE OLD WORKING STYLE) */
 .nav-links {
   position: fixed;
   inset: 56px 0 auto 0;        /* under the white announcement bar */
   background: rgba(0, 0, 0, 0.96);
   flex-direction: column;
   align-items: center;
   justify-content: flex-start;
   padding: 1.5rem 1.25rem 2.5rem;
   gap: 1.5rem;
   border-bottom: 1px solid var(--border-subtle);
   transform: translateY(-110%);
   opacity: 0;
   pointer-events: none;
   transition: transform 0.24s ease, opacity 0.24s ease;
   margin-left: 0;
 }
 .nav-links.open {
   transform: translateY(0);
   opacity: 1;
   pointer-events: auto;
 }
 .nav-links a {
   font-size: 1rem;
   text-align: center;
   padding: 0.25rem 0.4rem;
   border-radius: 999px;
   border-bottom: none;
 }
 /* Hide desktop Shop button on mobile */
 .nav-cta {
   display: none;
 }
}