/* --- Basic Setup & Theme --- */
:root { 
    --primary-color: #008080; 
    --background-color: #F8F9FA; 
    --section-bg-color: #FFFFFF; 
    --text-color: #212529; 
    --border-color: #E9ECEF; 
    --font-heading: 'DM Sans', sans-serif; 
    --font-body: 'Inter', sans-serif;
}

/* More aggressive degradation styles */
body.degraded {
    --background-color: #fdfcf9;
    --section-bg-color: #f2f2f0;
    --border-color: #cccccc;
    --font-heading: 'DM Sans', sans-serif;
}
body.degraded .scroll-section, body.degraded .site-header {
    transform: skewY(-0.5deg);
}
body.degraded .product-card {
    border: 3px solid #ff0000;
    animation: shake 0.5s ease-in-out infinite;
}
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }


* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-body); background-color: var(--background-color); color: var(--text-color); transition: background-color 0.8s; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; transition: font-family 0.8s; }
.scroll-section { min-height: 60vh; width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 2rem 1rem; background-color: var(--background-color); transition: background-color 0.8s, transform 0.5s ease-out; }
#final-corporate-section { min-height: auto; padding: 3rem 1rem; }
.trigger-section { height: 1px; }

/* --- Header & Marquees (FIXED) --- */
.promo-bar, .site-header, .top-marquee { flex-shrink: 0; background-color: var(--background-color); transition: background-color 0.8s; }
.promo-bar { background-color: var(--primary-color); color: white; text-align: center; padding: 0.5rem; font-weight: 600; }
#countdown-timer { font-family: 'DM Sans', sans-serif; font-size: 1.1em; animation: urgent-pulse 1s ease-in-out infinite; }
@keyframes urgent-pulse { 0%, 100% { color: white; } 50% { color: #ffff00; transform: scale(1.05); } }
.site-header { display: flex; justify-content: center; align-items: center; width: 100%; padding: 1rem 2rem; border-bottom: 1px solid var(--border-color); transition: border-color 0.8s; }
.logo { font-size: 1.8rem; letter-spacing: -1px; }
.marquee { overflow: hidden; white-space: nowrap; display: flex; }
.marquee-content { display: flex; flex-shrink: 0; animation: marquee-scroll 30s linear infinite; min-width: 200%; }
.marquee-content span { flex-shrink: 0; margin: 0 3rem; color: #555; font-weight: 600; white-space: nowrap; }
.top-marquee { padding: 0.75rem 0; border-bottom: 1px solid var(--border-color); transition: border-color 0.8s; }
@keyframes marquee-scroll { from { transform: translateX(0%); } to { transform: translateX(-50%); } }

/* --- Carousel (REFINED) --- */
.carousel-container { position: relative; width: 100%; overflow: hidden; background: #111; }
.carousel-track { display: flex; transition: transform 0.5s ease-in-out; will-change: transform; }
.slide { flex: 0 0 100%; width: 100%; height: clamp(300px, 50vh, 500px); display: flex; flex-direction: column; justify-content: center; align-items: center; color: white; font-size: clamp(2rem, 5vw, 3.5rem); text-align: center; padding: 2rem; background-size: cover; background-position: center; }
.slide-content { background-color: rgba(0, 0, 0, 0.5); padding: 1.5rem 2.5rem; border-radius: 8px; }
.slide-content p { font-size: 1.2rem; font-family: var(--font-body); font-weight: 400; opacity: 0.9; }
.carousel-button { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(255,255,255,0.7); color: black; border: 1px solid var(--border-color); font-size: 1.5rem; padding: 0.5rem 1rem; cursor: pointer; z-index: 10; border-radius: 50%; width: 50px; height: 50px; }
.prev { left: 20px; }
.next { right: 20px; }

/* --- Corporate Content --- */
.corporate-grid { padding-top: 3rem; }
.live-activity { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    font-size: 0.9rem; 
    color: #666; 
    margin-bottom: 2rem; 
    background: rgba(255, 0, 0, 0.1); 
    padding: 0.5rem 1rem; 
    border-radius: 20px; 
    border: 1px solid rgba(255, 0, 0, 0.2);
}
.activity-dot { 
    width: 8px; 
    height: 8px; 
    background: #ff4444; 
    border-radius: 50%; 
    animation: activity-pulse 1.5s ease-in-out infinite; 
}
@keyframes activity-pulse { 
    0%, 100% { opacity: 1; transform: scale(1); } 
    50% { opacity: 0.5; transform: scale(1.2); } 
}
#live-counter { font-weight: 700; color: #ff4444; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; max-width: 1200px; }
.product-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; max-width: 900px; justify-content: center; }
.product-card { border: 1px solid var(--border-color); border-radius: 8px; text-align: center; padding: 1.5rem; cursor: default; transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.8s; background-color: var(--background-color); position: relative; overflow: hidden; will-change: transform; }
.product-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 15px 25px rgba(0,0,0,0.12); }
.product-card p { color: #666; font-size: 0.9rem; margin: 0.5rem 0; }
.product-card .price { font-size: 1.2rem; font-weight: 700; color: var(--primary-color); }
.product-card .stock-warning { color: #ff4444; font-weight: 600; font-size: 0.8rem; animation: blink 1s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Glitch text effect for final stages */
.glitch-text {
    position: relative;
    animation: glitch-skew 1s linear infinite alternate-reverse;
}
.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.glitch-text::before {
    animation: glitch-1 0.15s infinite;
    color: #00ffff;
    z-index: -1;
}
.glitch-text::after {
    animation: glitch-2 0.15s infinite;
    color: #ff00ff;
    z-index: -2;
}
@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    20% { transform: skew(2deg); }
    40% { transform: skew(-2deg); }
    60% { transform: skew(0.5deg); }
    80% { transform: skew(-0.5deg); }
    100% { transform: skew(0deg); }
}
@keyframes glitch-1 {
    0% { clip: rect(30px, 9999px, 10px, 0); transform: translate(-2px, -2px); }
    25% { clip: rect(50px, 9999px, 90px, 0); transform: translate(2px, 2px); }
    50% { clip: rect(20px, 9999px, 80px, 0); transform: translate(-2px, 2px); }
    75% { clip: rect(70px, 9999px, 30px, 0); transform: translate(2px, -2px); }
    100% { clip: rect(90px, 9999px, 50px, 0); transform: translate(-2px, -2px); }
}
@keyframes glitch-2 {
    0% { clip: rect(65px, 9999px, 100px, 0); transform: translate(2px, -2px); }
    25% { clip: rect(15px, 9999px, 75px, 0); transform: translate(-2px, 2px); }
    50% { clip: rect(85px, 9999px, 25px, 0); transform: translate(2px, 2px); }
    75% { clip: rect(35px, 9999px, 95px, 0); transform: translate(-2px, -2px); }
    100% { clip: rect(5px, 9999px, 45px, 0); transform: translate(2px, -2px); }
}
.product-card .promo { background: #ffeb3b; color: #333; padding: 0.2rem 0.5rem; border-radius: 3px; font-size: 0.7rem; font-weight: 700; display: inline-block; }
.product-card .rating { color: #ffa500; font-size: 0.8rem; }
.product-card .badge { position: absolute; top: 10px; right: -30px; background: #ff4444; color: white; padding: 0.3rem 2rem; transform: rotate(45deg); font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; }
.pill-container { height: 180px; width: 100%; margin-bottom: 1rem; border-radius: 5px; background-color: #f0f0f0; overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.pill-icon { font-size: 4rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
.showcase-image { flex: 0 0 40%; height: 400px; background-color: #f0f0f0; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.showcase-pill { text-align: center; font-size: 5rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); animation: float 3s ease-in-out infinite; }
.showcase-pill span { display: block; font-size: 1.5rem; font-weight: 700; letter-spacing: 2px; margin-top: 1rem; }
.showcase-section { padding: 5rem 2rem; }
.showcase-section.alt-layout { background-color: var(--section-bg-color); }
.showcase-content { display: flex; align-items: center; gap: 4rem; max-width: 1200px; margin: 0 auto; }
.showcase-text { flex: 1; }
.showcase-text h2 { font-size: 2.5rem; }
.showcase-text p { font-size: 1.1rem; line-height: 1.6; color: #555; }
.subtitle { color: #666; max-width: 800px; text-align: center; margin-bottom: 3rem; margin-top: -1rem;}

/* --- Overwhelming Side Effects Section (FIXED) --- */
#side-effects-section { background-color: var(--section-bg-color); padding: 1rem; }
.legal-text { font-size: 0.9rem; color: #666; max-width: 800px; }
.side-effects-container { width: 100%; max-width: 1200px; height: 120px; overflow: hidden; border: 1px solid var(--border-color); border-radius: 4px; background: white; position: relative; overflow-x: hidden; }
.side-effects-container::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 20px; background: linear-gradient(to bottom, white, transparent); z-index: 2; }
.side-effects-container::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 20px; background: linear-gradient(to top, white, transparent); z-index: 2; }
.side-effects-scroll { height: auto; overflow: hidden; display: flex; flex-direction: column; animation: vertical-scroll 90s linear infinite; }
.side-effects-text { font-size: 0.8rem; line-height: 1.5; color: #333; padding: 10px 20px; white-space: normal; text-align: justify; }
@keyframes vertical-scroll { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.legal-disclaimer { font-size: 0.6rem; color: #999; margin-top: 0.5rem; max-width: 800px; line-height: 1.3; }

/* --- Styles for new "real content" sections --- */
#testimonial-section { background-color: var(--background-color); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin-top: 2rem; }
.testimonial-card { border-left: 4px solid var(--primary-color); padding: 1.5rem; }
.testimonial-card blockquote { font-size: 1.1rem; font-style: italic; margin: 0 0 1rem 0; }
.testimonial-card cite { font-weight: 600; }
.testimonial-card span { display: block; font-weight: 400; font-size: 0.8rem; color: #777; }

#process-section { background-color: var(--section-bg-color); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin-top: 2rem; }
.process-step h3 { font-size: 1.5rem; color: var(--primary-color); }

#featured-section { min-height: auto; padding: 2rem 1rem; }
#featured-section h3 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 2px; color: #999; }
.featured-logos { display: flex; gap: 4rem; margin-top: 1.5rem; filter: grayscale(100%); opacity: 0.6; }
.featured-logos span { font-family: 'DM Sans', sans-serif; font-size: 1.8rem; }

/* --- New styles for the gym culture section --- */
.gym-showcase { max-width: 1200px; margin: 0 auto; }
.featured-product { display: flex; align-items: center; gap: 3rem; margin-bottom: 3rem; padding: 2rem; background: var(--section-bg-color); border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.featured-image { flex: 0 0 200px; height: 200px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.featured-icon { font-size: 5rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); animation: float 3s ease-in-out infinite; }
.featured-content { flex: 1; }
.featured-content h3 { font-size: 2.2rem; margin-bottom: 1rem; color: var(--primary-color); }
.featured-description { font-size: 1.1rem; line-height: 1.6; color: #555; margin-bottom: 1.5rem; }
.gym-product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* --- New styles for the natural medicine grid --- */
.natural-medicine-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.natural-product-card { border: 1px solid var(--border-color); border-radius: 12px; padding: 1.5rem; background: var(--section-bg-color); box-shadow: 0 8px 25px rgba(0,0,0,0.1); transition: transform 0.3s ease-out; will-change: transform; }
.natural-product-card:hover { transform: translateY(-8px) scale(1.02); }
.natural-product-image { height: 120px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.natural-icon { font-size: 3rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); animation: float 3s ease-in-out infinite; }
.natural-product-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.natural-product-card p { font-size: 0.9rem; color: #666; margin-bottom: 0.5rem; }

/* --- New styles for Parallax Section --- */
#parallax-section {
    min-height: 400px;
    background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?fit=crop&w=1200&q=80');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: white;
}
.parallax-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem 3rem;
    border-radius: 8px;
    text-align: center;
}
.parallax-content h2 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* --- New styles for Blog Section --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin-top: 2rem;
}
.blog-card {
    background: var(--section-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease-out;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    background-repeat: no-repeat;
}
.blog-content {
    padding: 1.5rem;
}
.blog-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}
.blog-content h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}
.blog-readmore {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

/* --- New styles for the video section --- */
#video-showcase { background-color: var(--section-bg-color); }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1200px; width: 100%; margin-top: 2rem; }
.video-card { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.1); aspect-ratio: 9 / 16; display: flex; align-items: center; justify-content: center; }
.video-content { position: relative; text-align: center; }
.video-icon { font-size: 4rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; } }
.video-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 1.5rem; color: white; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.video-overlay p { opacity: 0.8; font-size: 0.9rem; }

/* --- Rising Action: Annoying UI --- */
.intrusive-element { position: fixed; z-index: 990; opacity: 0; transform: translateY(20px); transition: all 0.5s ease; pointer-events: none; }
.intrusive-element.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
#cookie-banner { bottom: 0; left: 0; width: 100%; background: #212121; color: white; padding: 1rem; display: flex; justify-content: center; align-items: center; }
#cookie-banner button { margin-left: 1rem; background: var(--primary-color); border: none; color: white; padding: 0.5rem 1rem; cursor: pointer; }
#newsletter-popup { top: 50%; left: 30px; transform: translate(0, -50%); background: white; border: 1px solid var(--border-color); border-radius: 8px; padding: 1.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.intrusive-close { position: absolute; top: 8px; right: 8px; background: #eee; border-radius: 50%; border: none; width: 24px; height: 24px; cursor: pointer; transition: all 0.3s ease; }
.newsletter-signup-btn { display: block; width: 100%; padding: 0.75rem; margin-top: 1rem; background: var(--primary-color); color: white; border: none; border-radius: 5px; font-family: 'DM Sans', sans-serif; font-weight: 600; cursor: pointer; transition: background-color 0.3s ease; }
.newsletter-signup-btn:hover { background: #006666; }

/* Styles for escalating annoyance */
#newsletter-popup.annoyance-1 { transform: scale(1.1) !important; }
#newsletter-popup.annoyance-2 { transform: scale(1.2) !important; }
#newsletter-popup.annoyance-2 .intrusive-close { transform: scale(0.7); opacity: 0.5; }
#newsletter-popup.annoyance-3 { transform: scale(1.3) !important; }
#newsletter-popup.annoyance-3 .intrusive-close { display: none; }

/* --- High Fidelity Pop-ups --- */
.popup-template { display: none; }
.popup-instance { position: fixed; z-index: 1000; animation: popup-appear 0.3s ease-out; width: 350px; }
@keyframes popup-appear { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
.popup-content { padding: 1.5rem; border-radius: 8px; box-shadow: 0 15px 35px rgba(0,0,0,0.25); position: relative; }
.popup-close { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.5); color: white; border-radius: 50%; border: none; width: 24px; height: 24px; font-size: 0.8rem; cursor: pointer; z-index: 2; }
.popup-button { display: block; width: 100%; padding: 0.75rem; text-align: center; text-decoration: none; margin-top: 1rem; font-family: 'DM Sans', sans-serif; cursor: pointer; border-radius: 5px; border: none; }
.type-promo { background: #005aaa; color: white; } .type-promo .popup-button { background: #ffd200; color: black; }
.type-warning { background: #fff200; color: black; border: 3px solid red; } .type-warning h2 { font-family: 'DM Sans', sans-serif; color: red; } .type-warning .popup-button { background: red; color: white; }
.type-testimonial { background: white; border-left: 5px solid var(--primary-color); } .type-testimonial p { font-style: italic; font-size: 1.1rem; } .type-testimonial .popup-button { background: var(--primary-color); color: white; }
.type-urgent { background: #ff4444; color: white; animation: pulse 0.5s ease-in-out infinite; } .type-urgent h2 { margin: 0; } .type-urgent .popup-button { background: white; color: #ff4444; font-weight: 900; }
.type-fomo { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; } .type-fomo .popup-button { background: white; color: #667eea; }
.type-quiz { background: #1a1a1a; color: #00ff00; border: 2px solid #00ff00; font-family: monospace; } .type-quiz .popup-button { background: #00ff00; color: black; font-family: monospace; }
.type-countdown { background: black; color: white; border: 3px solid #ffd200; } .countdown-timer { font-size: 3rem; font-family: 'DM Sans', sans-serif; color: #ffd200; margin: 0.5rem 0; animation: blink 1s steps(1, end) infinite; } .type-countdown .popup-button { background: #ffd200; color: black; font-weight: 900; }

.drifting { animation: drift 15s linear infinite alternate; }
@keyframes drift {
    from { transform: translate(-20px, -15px) rotate(-2deg); }
    to { transform: translate(20px, 15px) rotate(2deg); }
}

/* --- System Crash Transition --- */
/* CHANGE: Apply glitch effect directly to the main content */
main.glitch-active {
    animation: screen-glitch 0.2s steps(2, end) forwards;
}
@keyframes screen-glitch {
    0% { transform: translate(0); }
    10% { transform: translate(-5px, -5px); }
    20% { transform: translate(5px, 5px); }
    30% { transform: translate(-5px, 5px); }
    40% { transform: translate(5px, -5px); }
    50% { transform: translate(-5px, -5px); filter: invert(1); }
    60% { transform: translate(5px, 5px); }
    70% { transform: translate(-5px, 5px); }
    80% { transform: translate(5px, -5px); filter: none; }
    90% { transform: translate(-5px, -5px); }
    100% { transform: translate(0); }
}

main.is-corrupting { animation: screen-corruption 1s linear forwards; }
@keyframes screen-corruption { 0% { filter: none; transform: none; } 20% { filter: contrast(1.5) brightness(1.2); } 40% { filter: saturate(2) blur(1px); transform: skewX(2deg); } 60% { filter: hue-rotate(90deg) contrast(2); } 80% { filter: grayscale(1) blur(2px) contrast(3); transform: skewX(-2deg); } 100% { filter: grayscale(1) blur(4px) contrast(5); opacity: 0; transform: scale(1.1); } }
#glitch-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 9998; display: none; background: black; overflow: hidden; }
#glitch-overlay::after { content: 'CRITICAL_ERROR: USER_RESISTANCE_DETECTED - Halting process.'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: lime; font-family: monospace; font-size: 1.5rem; text-align: center; animation: text-flicker 1.5s steps(1, end) infinite; }
@keyframes text-flicker { 50% { opacity: 0.7; } }

/* --- Final Screen --- */
#final-section { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; color: #fff; display: none; justify-content: center; align-items: center; text-align: center; z-index: 9999; padding: 2rem; }
.final-content { max-width: 800px; }
.petition-link { display: inline-block; margin-top: 2rem; padding: 1rem 2rem; background: white; color: black; text-decoration: none; font-weight: bold; }
#reset-button { position: absolute; top: 20px; right: 20px; background: none; border: none; cursor: pointer; opacity: 0; transition: opacity 1s ease-in; }
#reset-button.visible { opacity: 1; }
#reset-button svg { width: 30px; height: 30px; fill: white; }

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .product-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 800px; }
    .natural-medicine-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .scroll-section { min-height: 50vh; padding: 1.5rem 1rem; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .product-grid-3 { grid-template-columns: 1fr; gap: 1rem; max-width: 100%; }
    .showcase-content { flex-direction: column; gap: 2rem; }
    .showcase-image { width: 100%; height: 250px; }
    .testimonial-grid, .process-grid, .blog-grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .featured-logos { flex-wrap: wrap; gap: 2rem; justify-content: center; }
    .popup-instance { width: 90%; max-width: 350px; }
    h1, h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
    .slide-content p { font-size: clamp(0.9rem, 2.5vw, 1.2rem); }
    .carousel-button { width: 40px; height: 40px; font-size: 1.2rem; }
    .side-effects-container { height: 100px; }
    .side-effects-text { font-size: 0.6rem; }
    .promo-bar { font-size: 0.9rem; padding: 0.75rem 0.5rem; }
    .marquee-content span { margin: 0 2rem; font-size: 0.9rem; }
    .featured-product { flex-direction: column; gap: 2rem; text-align: center; }
    .featured-image { width: 100%; max-width: 200px; }
    .gym-product-grid { grid-template-columns: 1fr; }
    .natural-medicine-grid { grid-template-columns: 1fr; gap: 1rem; }
}