/* Herbal Spray — aurora / midnight lab redesign */
:root {
    --void: #050608;
    --surface: #0e1118;
    --surface-2: #151a24;
    --elevated: #1a2130;
    --border: rgba(255, 255, 255, 0.07);
    --border-glow: rgba(94, 234, 212, 0.35);
    --text: #e8ecf4;
    --muted: #94a3b8;
    --accent: #5eead4;
    --accent-dim: rgba(94, 234, 212, 0.12);
    --violet: #a78bfa;
    --cta: #fb7185;
    --cta-hover: #fda4af;
    --radius: 4px;
    --radius-lg: 12px;
    --font-display: "Space Grotesk", system-ui, sans-serif;
    --font-body: "IBM Plex Sans", system-ui, sans-serif;
    --shadow-glow: 0 0 60px rgba(94, 234, 212, 0.08);
    --header-h: 4.25rem;
}

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

html {
    scroll-behavior: smooth;
}

body.site-aurora {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--muted);
    background: var(--void);
    min-height: 100vh;
    position: relative;
}

body.site-aurora::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 100% 80% at 85% -10%, rgba(94, 234, 212, 0.14), transparent 42%),
        radial-gradient(ellipse 70% 50% at 0% 40%, rgba(167, 139, 250, 0.1), transparent 45%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(251, 113, 133, 0.06), transparent 40%);
}

body.site-aurora > * {
    position: relative;
    z-index: 1;
}

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

a {
    color: var(--accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

a:hover {
    color: #99f6e4;
}

.container {
    width: min(1180px, 100% - 2rem);
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1.25rem;
    background: var(--accent);
    color: var(--void);
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    font-family: var(--font-display);
}

.skip-link:focus {
    top: 1rem;
}

/* Top strip */
.top-banner {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.55rem 0;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.top-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.top-banner-inner p {
    margin: 0;
    color: var(--text);
}

.banner-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    flex-shrink: 0;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 6, 8, 0.82);
    backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
}

.logo,
.brand-wordmark {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.logo a,
.brand-wordmark a {
    color: inherit;
    text-decoration: none;
}

.logo a:hover,
.brand-wordmark a:hover {
    color: var(--accent);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: 1px solid var(--border);
    cursor: pointer;
    padding: 0.5rem 0.55rem;
    border-radius: var(--radius);
}

.mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.5rem;
    align-items: center;
}

.main-nav a {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    color: var(--text);
    border-bottom-color: var(--accent);
}

.btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 1.4rem;
    background: linear-gradient(135deg, var(--cta) 0%, #f43f5e 100%);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-order:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(251, 113, 133, 0.35);
    color: #fff !important;
}

/* Hero / product */
.hero-kicker {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.product-section {
    padding: 3rem 0 3.5rem;
}

.product-section#home {
    scroll-margin-top: var(--header-h);
}

.product-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1.05fr);
    gap: 2.5rem 3rem;
    align-items: start;
}

.product-image {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
}

.product-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-2);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-glow), 0 24px 48px rgba(0, 0, 0, 0.45);
    position: relative;
}

.product-image-main::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.product-thumbnails {
    display: flex;
    gap: 0.65rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.thumbnail {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid var(--border);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--surface);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.product-info {
    background: linear-gradient(165deg, var(--surface) 0%, var(--elevated) 100%);
    padding: 2rem 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.product-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--violet), var(--cta));
    opacity: 0.9;
}

.product-title {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 1.1rem;
    letter-spacing: -0.03em;
}

.product-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.35rem;
}

.stars {
    color: #fcd34d;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-shadow: 0 0 20px rgba(252, 211, 77, 0.35);
}

.rating-text {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 600;
}

.product-price {
    margin-bottom: 1.35rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px dashed var(--border);
}

.price-sale {
    font-family: var(--font-display);
    font-size: 2.15rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.price-regular {
    font-size: 1rem;
    color: #64748b;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.product-description {
    margin-bottom: 1.6rem;
}

.product-description p {
    color: var(--muted);
}

.product-features {
    margin-bottom: 1.6rem;
}

.product-features h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 0.9rem;
    font-weight: 600;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.feature {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    background: var(--void);
    border-radius: var(--radius);
    border-left: 3px solid var(--violet);
}

.feature-icon {
    flex-shrink: 0;
    width: 1.45rem;
    height: 1.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    color: var(--accent);
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 0.7rem;
}

.feature-content {
    font-size: 0.96rem;
}

.feature-content strong {
    color: var(--text);
}

.product-specs {
    background: var(--void);
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.product-specs h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.product-specs ul {
    list-style: none;
}

.product-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--muted);
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs strong {
    color: var(--text);
}

.product-cta {
    margin-bottom: 1.35rem;
}

.btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.05rem 1.5rem;
    background: linear-gradient(135deg, #2dd4bf 0%, var(--accent) 50%, #5eead4 100%);
    color: var(--void) !important;
    text-decoration: none !important;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    color: var(--void) !important;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.35rem;
}

.trust-badge {
    text-align: center;
    padding: 0.9rem 0.5rem;
    background: var(--void);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.trust-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.trust-badge span {
    font-size: 0.72rem;
    color: var(--muted);
}

.important-notice {
    background: rgba(251, 113, 133, 0.08);
    border: 1px solid rgba(251, 113, 133, 0.25);
    border-radius: var(--radius);
    padding: 1.15rem 1.25rem;
}

.important-notice p {
    color: #fecdd3;
    font-size: 0.9rem;
    margin-bottom: 0.45rem;
}

.important-notice p:last-child {
    margin-bottom: 0;
}

.important-notice strong {
    color: #fff;
}

/* Description */
.description-section {
    padding: 3.5rem 0;
    background: var(--surface);
    color: var(--text);
    position: relative;
    overflow: hidden;
    border-block: 1px solid var(--border);
}

.description-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.03) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: sheen 18s linear infinite;
}

@keyframes sheen {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.description-content {
    position: relative;
    max-width: 760px;
    margin-inline: auto;
}

.description-content p {
    color: #cbd5e1;
    margin-bottom: 1.1rem;
    font-size: 1.05rem;
}

.description-content p:last-child {
    margin-bottom: 0;
}

/* Benefits — asymmetric bento */
.benefits-section {
    padding: 4rem 0;
}

.section-title {
    font-family: var(--font-display);
    text-align: left;
    font-size: clamp(1.65rem, 3.5vw, 2.5rem);
    color: var(--text);
    margin-bottom: 2rem;
    max-width: 20ch;
    margin-inline: 0;
    line-height: 1.12;
    letter-spacing: -0.03em;
    border-left: 4px solid var(--accent);
    padding-left: 1.25rem;
}

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

.benefit-card {
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.benefit-card:nth-child(1) {
    grid-column: span 1;
    background: linear-gradient(145deg, var(--elevated) 0%, var(--surface) 100%);
}

.benefit-card:nth-child(2) {
    border-color: rgba(167, 139, 250, 0.2);
}

.benefit-card:nth-child(3) {
    border-color: rgba(94, 234, 212, 0.2);
}

.benefit-card:nth-child(4) {
    background: linear-gradient(145deg, var(--surface) 0%, #1a1524 100%);
}

.benefit-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-glow);
}

.benefit-icon {
    font-size: 1.75rem;
    margin-bottom: 0.85rem;
    line-height: 1;
    filter: grayscale(0.2);
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 0.55rem;
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.94rem;
    color: var(--muted);
}

/* How it works */
.how-it-works {
    padding: 4rem 0;
    background: var(--void);
}

.how-it-works .section-title {
    text-align: center;
    margin-inline: auto;
    border-left: none;
    padding-left: 0;
    border-bottom: 3px solid var(--violet);
    padding-bottom: 0.75rem;
    max-width: none;
}

.how-it-works-content {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
}

.how-it-works-content > p {
    color: var(--muted);
    margin-bottom: 1.1rem;
}

.how-it-works-list {
    list-style: none;
    text-align: left;
    margin: 1.75rem 0;
}

.how-it-works-list li {
    padding: 0.95rem 1.1rem 0.95rem 2.75rem;
    margin-bottom: 0.5rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--muted);
    position: relative;
    font-size: 0.95rem;
}

.how-it-works-list li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}

.how-it-works-content > p:last-child {
    margin-bottom: 0;
}

/* Guarantee */
.guarantee {
    padding: 3.5rem 0;
    background: var(--surface);
    border-block: 1px solid var(--border);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.guarantee-item {
    text-align: left;
    padding: 1.25rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--void);
}

.guarantee-icon {
    font-size: 1.5rem;
    margin-bottom: 0.65rem;
    opacity: 0.9;
}

.guarantee-item h3 {
    font-family: var(--font-display);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.guarantee-item p {
    font-size: 0.82rem;
    color: var(--muted);
}

/* FAQ */
.faq {
    padding: 4rem 0;
}

.faq .section-title {
    text-align: center;
    margin-inline: auto;
    border-left: none;
    padding-left: 0;
    max-width: none;
}

.faq .section-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 0;
}

.faq-list {
    max-width: 720px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item summary {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2.75rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--violet);
    font-family: var(--font-display);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item .faq-answer {
    padding: 0 1.25rem 1.1rem;
    border-top: 1px solid var(--border);
}

.faq-item .faq-answer p {
    padding-top: 0.9rem;
    color: var(--muted);
    font-size: 0.94rem;
}

/* CTA */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(160deg, #0f172a 0%, var(--void) 50%, #1e1b4b 100%);
    color: var(--text);
    border-top: 1px solid var(--border);
    position: relative;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(94, 234, 212, 0.12), transparent 55%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.85rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.cta-section p {
    max-width: 38ch;
    margin-inline: auto;
    margin-bottom: 1.75rem;
    color: var(--muted);
    font-size: 1.02rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.25rem;
    background: var(--text);
    color: var(--void) !important;
    text-decoration: none !important;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 236, 244, 0.15);
    color: var(--void) !important;
}

/* Footer */
.footer {
    background: #020305;
    color: var(--muted);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: var(--font-display);
    color: var(--text);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-section h4 {
    color: var(--text);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.35rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.4rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer-legal {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-bottom: 1.75rem;
}

.footer-legal h3 {
    font-family: var(--font-display);
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
}

.legal-info p {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
}

.legal-info strong {
    color: #e2e8f0;
}

.health-notice {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.2rem;
    margin: 1.5rem 0;
    border: 1px solid var(--border);
}

.health-notice h4 {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 0.55rem;
    font-weight: 600;
    font-family: var(--font-display);
}

.health-notice p {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.contact-info-footer p {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
}

.contact-info-footer strong {
    color: var(--text);
}

.contact-info-footer a {
    color: var(--accent);
    text-decoration: none;
    word-break: break-all;
}

.contact-info-footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #64748b;
    font-family: var(--font-display);
    letter-spacing: 0.04em;
}

/* Legal pages */
.legal-page {
    padding: 2.75rem 0 4rem;
    min-height: 55vh;
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.legal-page section {
    margin-bottom: 1.25rem;
    padding: 1.5rem 1.6rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.legal-page h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 1rem;
    color: var(--text);
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 0.85rem;
    color: var(--muted);
    font-size: 0.96rem;
}

.legal-page ul {
    margin: 0 0 0.85rem 1.2rem;
}

.legal-page ul li {
    margin-bottom: 0.35rem;
    color: var(--muted);
    font-size: 0.96rem;
}

.legal-page a {
    color: var(--accent);
    font-weight: 600;
}

.withdrawal-form {
    background: var(--void);
    border: 1px dashed rgba(94, 234, 212, 0.35);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 0.75rem;
}

.withdrawal-form p {
    margin-bottom: 0.75rem;
}

.withdrawal-form strong {
    color: var(--text);
}

/* Responsive */
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        position: static;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        max-width: none;
    }
}

@media (max-width: 768px) {
    body.site-aurora {
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 0.65rem 0;
        border-bottom: 1px solid var(--border);
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .product-info {
        padding: 1.5rem;
    }

    .top-banner-inner {
        flex-direction: column;
        gap: 0.35rem;
    }

    .banner-dot {
        display: none;
    }
}
