:root {
    /* NOICE Colors */
    --color-red: #FF3333;
    --color-blue: #0055FF;
    --color-yellow: #FFCC00;
    --color-white: #FFFFFF;
    --color-black: #111111;
    --color-text-on-red: #FFFFFF;

    /* Spacing / Grid - Extracted from Gruns */
    --container-width: 1200px;
    --gutter: 20px;
    --header-height: 80px;
}

/* Base Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-red);
    color: var(--color-white);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo,
.btn {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* 3.1 Promo Bar */
.promo-bar {
    background-color: var(--color-blue);
    color: var(--color-yellow);
    text-align: center;
    padding: 10px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    font-family: 'Archivo Black', sans-serif;
}

/* 3.2 Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.sticky-header.scrolled {
    background-color: rgba(255, 51, 51, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--color-black);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 2rem;
    color: var(--color-white);
    text-shadow: 2px 2px 0px var(--color-black);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-yellow);
}

.cart-icon {
    position: relative;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--color-yellow);
    color: var(--color-blue);
    font-size: 0.7rem;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header Actions & Hamburger */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    transition: 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-red);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav-links a {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    color: var(--color-white);
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--color-yellow);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--color-white);
    cursor: pointer;
}

.no-scroll {
    overflow: hidden;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    border: 3px solid var(--color-black);
    transition: transform 0.1s, box-shadow 0.1s;
}

.btn-primary {
    background-color: var(--color-yellow);
    color: var(--color-blue);
    box-shadow: 4px 4px 0px var(--color-black);
}

.btn-primary:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--color-black);
}

.btn-secondary {
    background-color: var(--color-black);
    color: var(--color-white);
    width: 100%;
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--color-blue);
}

/* 3.3 Hero Section */
.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 20px;
    color: var(--color-white);
    -webkit-text-stroke: 2px var(--color-black);
    text-shadow: 4px 4px 0px var(--color-blue);
}

.subhead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 400px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid var(--color-black);
    background: radial-gradient(circle, var(--color-blue) 0%, transparent 70%);
}

.image-placeholder img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.5));
    transform: rotate(-5deg);
    transition: transform 0.3s;
}

.hero-image:hover img {
    transform: rotate(0deg) scale(1.05);
}

.badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.badge {
    background: var(--color-yellow);
    color: var(--color-black);
    padding: 5px 10px;
    font-weight: 800;
    font-family: 'Archivo Black';
    border: 2px solid var(--color-black);
    transform: rotate(3deg);
}

.green-dot {
    width: 20px;
    height: 20px;
    background-color: #008000;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 1px #008000;
}

/* 3.4 Product Grid */
.product-section {
    padding: 80px 0;
    background-color: var(--color-white);
    color: var(--color-black);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: left;
    color: var(--color-black);
}

.section-title.center {
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    border: 3px solid var(--color-black);
    background: var(--color-white);
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 0px var(--color-black);
}

.card-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--color-black);
    overflow: hidden;
}

.card-image img {
    max-height: 80%;
    transition: transform 0.3s;
}

.card-image:hover img {
    transform: scale(1.1) rotate(5deg);
}

.bg-red {
    background-color: #FFE5E5;
}

.bg-yellow {
    background-color: #FFF9CC;
}

.bg-green {
    background-color: #E5FFE5;
}

.card-info {
    padding: 20px;
}

.rating {
    color: var(--color-yellow);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rating .review-count {
    color: #666;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* 3.5 Info Section */
.info-section {
    padding: 60px 0;
    background-color: var(--color-blue);
    color: var(--color-white);
    border-top: 3px solid var(--color-black);
    border-bottom: 3px solid var(--color-black);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.info-item .icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* 3.6 Marquee */
.marquee-section {
    background-color: var(--color-yellow);
    color: var(--color-black);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 3px solid var(--color-black);
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: 'Archivo Black';
    font-size: 1.5rem;
    text-transform: uppercase;
}

.marquee-content span {
    padding-right: 50px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 3.7 Bundle Section */
.bundle-section {
    padding: 80px 0;
    background: var(--color-white);
    color: var(--color-black);
}

.bundle-container {
    display: flex;
    justify-content: center;
}

.bundle-details {
    max-width: 600px;
    width: 100%;
    border: 3px solid var(--color-black);
    padding: 40px;
    background: #fff;
    box-shadow: 10px 10px 0px var(--color-blue);
}

.bundle-details h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.purchase-options {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border: 2px solid #ddd;
    cursor: pointer;
    font-weight: 700;
}

.option.selected {
    border: 2px solid var(--color-blue);
    background-color: rgba(0, 85, 255, 0.05);
}

.actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--color-black);
}

.qty-selector button {
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 1.2rem;
    cursor: pointer;
}

.qty-selector span {
    padding: 0 10px;
    font-weight: 700;
}

.full-width {
    flex: 1;
}

/* 3.8 Reviews */
.reviews-section {
    padding: 80px 0;
    background: var(--color-black);
    color: var(--color-white);
}

.reviews-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.review-card {
    min-width: 300px;
    background: #222;
    padding: 30px;
    border: 1px solid #333;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.reviewer {
    font-weight: 700;
    color: var(--color-yellow);
    text-transform: uppercase;
}

/* 3.9 Footer */
footer {
    background: var(--color-blue);
    color: var(--color-white);
    padding: 60px 0 20px;
    border-top: 3px solid var(--color-black);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--color-yellow);
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--color-yellow);
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-col a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods span {
    margin-right: 15px;
    font-weight: 700;
    opacity: 0.7;
}

/* --- EXPERIENCE UPGRADE: PREMIUM MOTION SYSTEM --- */
.webomancy-credit {
    display: inline-block;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    cursor: default;
}

.webomancy-credit:hover {
    color: var(--color-yellow);
    opacity: 1;
    letter-spacing: 0.25em;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

:root {
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Global Motion */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.hover-scale {
    transition: transform 0.3s var(--ease-out-expo);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Magnetic Button Effect */
.btn-magnetic {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s var(--ease-out-expo);
}

.btn-magnetic:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0px var(--color-black);
}

/* SECTION 1: HERO ENHANCEMENT */
.hero-image {
    perspective: 1000px;
    z-index: 2;
    /* Ensure it stays above shapes */
}

.hero-pouch-container {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    /* JavaScript will drive this */
}

.image-placeholder.red-pouch {
    transform: rotateY(-10deg) rotateX(5deg);
    /* Initial slight tilt */
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);
    /* Soft shadow */
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.hero-pouch-container:hover .image-placeholder.red-pouch {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.4);
}

.btn-glow {
    animation: micro-glow 3s infinite alternate;
}

@keyframes micro-glow {
    from {
        box-shadow: 0 0 10px rgba(255, 204, 0, 0.5), 4px 4px 0px var(--color-black);
    }

    to {
        box-shadow: 0 0 25px rgba(255, 204, 0, 0.8), 4px 4px 0px var(--color-black);
    }
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: flex-start;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
}

/* SECTION 2: COMPARISON AUTHORITY */
.comparison-section {
    padding: 100px 0;
    background: var(--color-black);
    color: var(--color-white);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.stat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: #222;
    padding: 20px;
    border: 1px solid #333;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--color-yellow);
    font-family: 'Archivo Black';
    display: block;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.comparison-table th {
    font-family: 'Archivo Black';
    font-size: 1.2rem;
    text-transform: uppercase;
}

.col-noice {
    background: rgba(255, 51, 51, 0.2);
    border: 2px solid var(--color-red);
    position: relative;
    transition: background 0.3s;
}

.col-noice:hover {
    background: rgba(255, 51, 51, 0.3);
}

.tick {
    color: var(--color-yellow);
    font-size: 1.5rem;
}

.cross {
    color: #666;
    font-size: 1.2rem;
}

/* SECTION 3: TRANSPARENCY BLOCK */
.transparency-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-white);
    color: var(--color-black);
    overflow: hidden;
}

.transparency-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIi8+CjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiNjY2MiLz4KPC9zdmc+');
    opacity: 0.1;
    pointer-events: none;
}

.transparency-list {
    background: var(--color-black);
    color: var(--color-white);
    padding: 80px;
    font-family: 'Inter', monospace;
}

.ingredient-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.transparency-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.big-statement {
    font-size: 3rem;
    line-height: 1.1;
    font-family: 'Archivo Black';
    margin-bottom: 20px;
    color: var(--color-red);
}

/* SECTION 4: SOCIAL PROOF WALL */
.social-wall-section {
    padding: 80px 0;
    background: var(--color-blue);
    overflow: hidden;
}

.social-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.social-track:hover {
    animation-play-state: paused;
}

.social-card {
    background: var(--color-white);
    color: var(--color-black);
    padding: 20px;
    width: 300px;
    border: 3px solid var(--color-black);
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
}

.verified-badge {
    background: var(--color-blue);
    color: var(--color-white);
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 2px;
    margin-left: 5px;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SECTION 5: CRUNCH SCIENCE */
.science-section {
    padding: 100px 0;
    background: var(--color-yellow);
    color: var(--color-black);
    text-align: center;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.science-item {
    background: var(--color-white);
    padding: 30px;
    border: 3px solid var(--color-black);
    position: relative;
}

.science-visual {
    height: 150px;
    background: #eee;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Waveform Animation */
.waveform-bar {
    width: 10px;
    background: var(--color-black);
    margin: 0 2px;
    animation: wave 1s infinite ease-in-out;
}

@keyframes wave {

    0%,
    100% {
        height: 20px;
    }

    50% {
        height: 80px;
    }
}

/* SECTION 6: FAQ UPGRADE */
.faq-section {
    padding: 80px 0;
    background: var(--color-white);
    color: var(--color-black);
}

.faq-item {
    border-bottom: 2px solid var(--color-black);
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s var(--ease-out-expo), padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
    /* Approximate max height */
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}


/* SECTION 7: CART DRAWER */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cart-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: var(--color-white);
    color: var(--color-black);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--color-black);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    padding: 20px;
    border-bottom: 2px solid var(--color-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-yellow);
}

.cart-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-footer {
    padding: 20px;
    border-top: 2px solid var(--color-black);
    background: #f9f9f9;
}

.shipping-bar {
    height: 10px;
    background: #ddd;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.shipping-progress {
    height: 100%;
    width: 70%;
    background: var(--color-green, #008000);
}


/* SECTION 9: STICKY MOBILE CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: var(--color-white);
    border-top: 3px solid var(--color-black);
    z-index: 900;
    display: none;
    /* Show only on mobile via media query */
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

/* --- RESPONSIVE STYLES --- */

@media (max-width: 1024px) {
    :root {
        --container-width: 90%;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .product-grid,
    .science-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Header & Nav */
    .desktop-nav {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .sticky-mobile-cta {
        display: block;
    }

    /* Layout Stacking */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
        /* Image on top? Or keep bottom? Let's keep existing flow or specific request. 
                      Common pattern: Headline -> Image -> CTA. 
                      Current HTML: Content (Head) -> Image. 
                      If we want Text Top, Image Bottom, default block flow works. */
        margin-bottom: 40px;
    }

    .badge-overlay {
        right: 50%;
        transform: translateX(50%);
        align-items: center;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .transparency-section {
        grid-template-columns: 1fr;
    }

    .transparency-list,
    .transparency-content {
        padding: 40px 20px;
    }

    .bundle-container {
        padding: 0;
    }

    .bundle-details {
        border-left: none;
        border-right: none;
        box-shadow: none;
    }

    /* Product Grid & Others to 1 Col */
    .product-grid,
    .science-grid,
    .footer-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    /* Typography Adjustments */
    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-cards {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
        /* Keep 2x2 for stats */
    }

    /* Table Scroll */
    .table-wrapper {
        overflow-x: auto;
        border: 2px solid var(--color-black);
    }

    .comparison-table {
        min-width: 500px;
        /* Force scroll if too small */
    }

    /* Cart Drawer */
    .cart-drawer {
        width: 100%;
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .payment-methods span {
        margin: 5px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .subhead {
        font-size: 1rem;
    }

    .stat-cards {
        grid-template-columns: 1fr;
        /* Stack stats on very small screens? Maybe 2x2 is still ok. Let's try 1fr for cleaner look if content is wide */
    }

    /* Marquee Speed Adjust? */
    .marquee-content {
        animation-duration: 10s;
    }
}