/* Herbal Spray — editorial botanical theme */
:root {
    --bg-page: #f4f0e8;
    --bg-elevated: #fffcf7;
    --bg-mint: #e8f0e4;
    --bg-deep: #1e3d32;
    --bg-deep-soft: #2a5244;
    --ink: #14261f;
    --ink-soft: #3d5249;
    --muted: #6b7a72;
    --accent: #c9a87c;
    --accent-bright: #ddb882;
    --leaf: #3d6b52;
    --leaf-dark: #2d5040;
    --border-soft: rgba(30, 61, 50, 0.12);
    --shadow-sm: 0 4px 24px rgba(20, 38, 31, 0.06);
    --shadow-md: 0 12px 40px rgba(20, 38, 31, 0.1);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --font-display: "Fraunces", Georgia, serif;
    --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.65;
    color: var(--ink-soft);
    background: var(--bg-page);
    background-image:
        radial-gradient(ellipse 120% 80% at 100% 0%, rgba(201, 168, 124, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 0% 100%, rgba(61, 107, 82, 0.08) 0%, transparent 45%);
    min-height: 100vh;
}

h1, h2, h3, .logo, .section-title, .product-title, .hero-title {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 600;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top ribbon */
.top-banner {
    background: linear-gradient(90deg, var(--bg-deep) 0%, var(--bg-deep-soft) 50%, var(--bg-deep) 100%);
    color: #e8efe9;
    padding: 11px 0;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.top-banner p {
    margin: 0;
}

/* Header */
.header {
    background: rgba(255, 252, 247, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--leaf-dark);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--leaf-dark);
    border-radius: 2px;
    transition: transform 0.25s ease;
}

.main-nav {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: var(--leaf-dark);
}

.main-nav a:hover::after {
    width: 100%;
}

.btn-order {
    padding: 0.65rem 1.35rem;
    background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-dark) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(45, 80, 64, 0.35);
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 80, 64, 0.4);
}

/* Hero */
.hero-section {
    padding: 3.5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 55%;
    height: 120%;
    background: radial-gradient(circle, rgba(201, 168, 124, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--leaf);
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    background: var(--bg-mint);
    border-radius: 999px;
    border: 1px solid rgba(61, 107, 82, 0.2);
}

.hero-title {
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 36ch;
    margin-bottom: 1.75rem;
    font-weight: 400;
}

.btn-hero {
    display: inline-block;
    padding: 0.9rem 1.75rem;
    background: var(--accent);
    color: var(--ink);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(201, 168, 124, 0.45);
}

.btn-hero:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
}

.hero-card {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
    position: relative;
}

.hero-card::after {
    content: "✦";
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 1.25rem;
    color: var(--accent);
    opacity: 0.7;
}

.hero-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

.hero-card strong {
    color: var(--leaf-dark);
}

/* Product */
.product-section {
    padding: 2rem 0 3.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-image-main {
    width: 100%;
    margin-bottom: 1.25rem;
    background: linear-gradient(160deg, var(--bg-mint) 0%, var(--bg-elevated) 100%);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
}

.product-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.product-thumbnails {
    display: flex;
    gap: 0.85rem;
}

.thumbnail {
    width: 76px;
    height: 76px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
    object-fit: cover;
    background: var(--bg-elevated);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--leaf);
    transform: scale(1.03);
}

.product-title {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.stars {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 2px;
}

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

.product-price {
    margin-bottom: 1.25rem;
}

.price-sale {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--leaf-dark);
}

.price-regular {
    font-size: 1rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.product-description {
    margin-bottom: 1.75rem;
    color: var(--ink-soft);
    line-height: 1.8;
    font-size: 0.95rem;
}

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

.product-features h3 {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
    font-family: var(--font-display);
}

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

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-soft);
}

.feature-icon {
    color: var(--leaf);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-content {
    color: var(--ink-soft);
    line-height: 1.55;
    font-size: 0.92rem;
}

.product-specs {
    background: var(--bg-mint);
    padding: 1.35rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.75rem;
    border: 1px solid rgba(61, 107, 82, 0.15);
}

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

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

.product-specs ul li {
    padding: 0.55rem 0;
    color: var(--ink-soft);
    border-bottom: 1px dashed rgba(30, 61, 50, 0.15);
    font-size: 0.9rem;
}

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

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

.btn-primary {
    display: block;
    width: 100%;
    padding: 1.05rem 1.5rem;
    background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-dark) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    box-shadow: 0 6px 24px rgba(45, 80, 64, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(45, 80, 64, 0.4);
}

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

.trust-badge {
    background: var(--bg-elevated);
    padding: 1rem 0.75rem;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--border-soft);
    transition: border-color 0.2s;
}

.trust-badge:hover {
    border-color: rgba(61, 107, 82, 0.35);
}

.trust-badge strong {
    display: block;
    color: var(--leaf-dark);
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: var(--font-sans);
}

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

.important-notice {
    background: linear-gradient(135deg, #fff8e8 0%, #fff2dc 100%);
    border: 1px solid rgba(201, 168, 124, 0.45);
    padding: 1.35rem 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
}

.important-notice p {
    margin-bottom: 0.5rem;
    color: #5c4a32;
    font-size: 0.88rem;
    line-height: 1.65;
}

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

.important-notice strong {
    color: #3d3220;
}

/* Description */
.description-section {
    padding: 3.5rem 0;
    background: var(--bg-deep);
    color: #d4e0d8;
    position: relative;
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    margin-top: -1px;
}

.description-section .description-content {
    max-width: 720px;
    margin: 0 auto;
}

.description-section p {
    color: #c5d4ca;
    line-height: 1.85;
    font-size: 1.02rem;
    margin-bottom: 1.25rem;
}

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

/* Benefits */
.benefits-section {
    padding: 4rem 0;
    background: var(--bg-page);
}

.section-title {
    text-align: center;
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--leaf));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: var(--bg-elevated);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
    font-family: var(--font-display);
}

.benefit-card p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* How it works */
.how-it-works {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-mint) 0%, var(--bg-page) 100%);
}

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

.how-it-works-content > p {
    font-size: 1rem;
    color: var(--ink-soft);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.how-it-works-list {
    list-style: none;
    text-align: left;
    max-width: 560px;
    margin: 1.75rem auto;
    padding: 0;
}

.how-it-works-list li {
    padding: 1rem 1.15rem;
    margin-bottom: 0.65rem;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--leaf);
    color: var(--ink-soft);
    font-size: 0.92rem;
    box-shadow: var(--shadow-sm);
}

/* Guarantee */
.guarantee {
    padding: 4rem 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.guarantee-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-page);
    border: 1px solid var(--border-soft);
}

.guarantee-icon {
    font-size: 2rem;
    margin-bottom: 0.85rem;
}

.guarantee-item h3 {
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
    color: var(--leaf-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-sans);
}

.guarantee-item p {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background: var(--bg-page);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 1.35rem 1.5rem;
    margin-bottom: 0.85rem;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--leaf-dark);
    margin-bottom: 0.55rem;
    font-size: 1.02rem;
    font-family: var(--font-display);
}

.faq-item p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.92rem;
}

/* CTA */
.cta-section {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, var(--bg-deep) 0%, #152e26 100%);
    color: #e8efe9;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    margin-bottom: 0.85rem;
    color: #fff;
    font-family: var(--font-display);
}

.cta-section p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.88;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.1rem 2.25rem;
    background: var(--accent);
    color: var(--ink);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.btn-primary-large:hover {
    background: var(--accent-bright);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #0f1f19;
    color: #a8bdb2;
    padding: 3rem 0 1.25rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: #e8efe9;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-family: var(--font-display);
}

.footer-section h4 {
    color: #c9d9ce;
    margin-bottom: 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: var(--font-sans);
}

.footer-section p {
    line-height: 1.75;
    margin-bottom: 0.45rem;
    font-size: 0.88rem;
}

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

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

.footer-section ul li a {
    color: #a8bdb2;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.88rem;
}

.footer-section ul li a:hover {
    color: var(--accent-bright);
}

.footer-section a {
    color: #c9d9ce;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

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

.legal-info {
    margin-bottom: 1.75rem;
}

.legal-info p {
    color: #a8bdb2;
    margin-bottom: 0.4rem;
    line-height: 1.75;
    font-size: 0.86rem;
}

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

.health-notice {
    background: rgba(255, 255, 255, 0.04);
    padding: 1.35rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.health-notice h4 {
    color: #e8efe9;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-family: var(--font-display);
}

.health-notice p {
    color: #9aaf9f;
    line-height: 1.75;
    font-size: 0.85rem;
}

.contact-info-footer {
    margin-bottom: 1.5rem;
}

.contact-info-footer p {
    color: #a8bdb2;
    margin-bottom: 0.4rem;
    line-height: 1.75;
    font-size: 0.86rem;
}

.contact-info-footer strong {
    color: #d4e0d8;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #7a9488;
    font-size: 0.82rem;
}

/* Legal pages */
.legal-page {
    padding: 3rem 0 4rem;
    min-height: 55vh;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-soft);
}

.legal-page .container {
    max-width: 800px;
}

.legal-page h1 {
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    margin-bottom: 0.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
    width: 100%;
}

.legal-page section {
    margin-bottom: 2.25rem;
}

.legal-page h2 {
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
    margin-top: 0.5rem;
    color: var(--leaf-dark);
    font-family: var(--font-display);
}

.legal-page h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    margin-top: 1.25rem;
    color: var(--ink);
    font-family: var(--font-display);
}

.legal-page p {
    margin-bottom: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.8;
    font-size: 0.94rem;
}

.legal-page ul {
    margin-left: 1.25rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.45rem;
    color: var(--ink-soft);
    line-height: 1.75;
    font-size: 0.93rem;
}

.legal-page a {
    color: var(--leaf-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page a:hover {
    color: var(--leaf);
}

.withdrawal-form {
    background: var(--bg-mint);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    margin: 1.75rem 0;
    border: 1px solid rgba(61, 107, 82, 0.2);
}

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

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

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

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

    .hero-card {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 252, 247, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.25rem;
        box-shadow: var(--shadow-md);
        display: none;
        gap: 1rem;
        align-items: stretch;
        border-bottom: 1px solid var(--border-soft);
    }

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

    .main-nav a::after {
        display: none;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .description-section {
        clip-path: none;
        padding: 2.5rem 0;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}
