:root {
    --color-primary: #2D5016;
    --color-secondary: #3D1F0D;
    --color-accent: #C8860A;
    --color-accent-light: #E8B84B;
    --color-bg: #F5F0E8;
    --color-bg-warm: #EDE5D4;
    --color-text: #2A1505;
    --color-text-muted: #7A6652;
    --color-surface: #FAF7F2;
    --color-green-light: #6B9E3A;

    --font-hero: "Cormorant Garamond", serif;
    --font-heading: "Plus Jakarta Sans", sans-serif;
    --font-body: "DM Sans", sans-serif;
    --font-mono: "IBM Plex Mono", monospace;
    
    --radius-card: 2rem;
    --radius-container: 3rem;
    --radius-pill: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.75;
    overflow-x: hidden;
}

/* Noise overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.04;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 0;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    outline: none;
}
.btn:hover {
    transform: scale(1.03);
}
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg);
}
.btn-submit {
    background-color: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    width: 100%;
    margin-top: 1rem;
}
.btn-submit:hover {
    color: var(--color-text);
}
.btn-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1;
}
.btn:hover .btn-fill {
    transform: translateY(0);
}
.btn-text {
    position: relative;
    z-index: 2;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-bg);
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}
.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.navbar.scrolled .nav-links a {
    color: var(--color-text);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.logo {
    display: flex;
    align-items: center;
    z-index: 1005;
    mix-blend-mode: multiply;
}
.logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}
.navbar.scrolled .logo img {
    width: 130px;
}
.nav-brand-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-hero);
    font-size: 2.8rem;
    line-height: 1;
    font-style: italic;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}
.nav-menu-wrapper {
    position: relative;
    margin-left: auto;
}
.hamburger-new {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger-new span {
    width: 32px;
    height: 2px;
    background-color: var(--color-text);
    transition: 0.3s;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 1rem;
    background-color: var(--color-surface);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 1rem;
    padding: 1rem 0;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.dropdown-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.dropdown-menu a {
    padding: 0.8rem 2rem;
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}
.dropdown-menu a:hover {
    background-color: var(--color-bg);
    color: var(--color-primary);
}

/* Hero */
.hero {
    height: auto;
    min-height: calc(100vh - 90px);
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem 4rem;
}
.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;
    filter: contrast(1.15) brightness(0.9) saturate(1.1);
    z-index: -2;
}
.hero-overlay-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-bg) 0%, var(--color-bg) 25%, transparent 55%);
    z-index: -1;
}
.hero-content {
    max-width: 600px;
    z-index: 1;
    color: var(--color-text);
}
.hero-title {
    font-family: var(--font-hero);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--color-text);
}
.hero-subline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}
.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
}

/* Features Bar */
.features-bar {
    background-color: var(--color-bg);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1.5rem 2rem;
}
.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}
.feature-text {
    display: flex;
    flex-direction: column;
}
.feature-text strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.2;
}
.feature-text span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Our Story */
.our-story {
    background-color: var(--color-bg-warm);
    padding: 8rem 2rem;
    background-image: radial-gradient(var(--color-text-muted) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0;
}
.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.story-image-col {
    border-radius: var(--radius-container);
    overflow: hidden;
    height: 600px;
}
.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-hook {
    font-family: var(--font-hero);
    font-size: 2.5rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}
.story-body p {
    margin-bottom: 1.5rem;
    color: var(--color-text);
}
.pull-quote {
    font-family: var(--font-hero);
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    color: var(--color-primary);
    text-align: center;
    margin-top: 3rem;
}

/* How It Works */
.how-it-works {
    background-color: var(--color-primary);
    padding: 8rem 2rem;
    color: var(--color-bg);
}
.works-header h2 {
    font-family: var(--font-hero);
    font-size: 3rem;
    font-style: italic;
    text-align: center;
    margin-bottom: 4rem;
}
.works-cards-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.work-card {
    background-color: var(--color-bg);
    color: var(--color-secondary);
    border-radius: var(--radius-card);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.card-visual {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-content {
    flex: 1;
}
.step-num {
    font-family: var(--font-mono);
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}
.card-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.churn-svg {
    width: 100px;
    height: 100px;
    color: var(--color-accent);
}
.churn-pestle {
    transform-origin: 50px 40px;
    animation: churn 1.5s ease-in-out infinite alternate;
}
@keyframes churn {
    0% { transform: rotate(-15deg); }
    100% { transform: rotate(15deg); }
}
.oil-drop {
    animation: drop 1.5s infinite;
}
@keyframes drop {
    0% { transform: translateY(-10px); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}
.pulse-svg path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: dash 2s linear infinite;
    color: var(--color-accent);
}
@keyframes dash {
    to { stroke-dashoffset: 0; }
}

/* Philosophy */
.philosophy {
    position: relative;
    padding: 10rem 2rem;
    background-color: #2A1505;
    color: var(--color-bg);
    text-align: center;
    overflow: hidden;
}
.philosophy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}
.philosophy-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.phil-line-a {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}
.phil-line-b {
    font-family: var(--font-hero);
    font-size: clamp(3rem, 6vw, 5rem);
    font-style: italic;
    font-weight: 600;
    margin-bottom: 3rem;
}
.phil-line-b span {
    color: var(--color-accent);
}
.manifesto-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    opacity: 0.9;
}
.eco-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-pill);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Reviews */
.reviews {
    padding: 8rem 2rem;
    background-color: var(--color-bg);
}
.reviews-header h2 {
    font-family: var(--font-hero);
    font-size: 3rem;
    font-style: italic;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-primary);
}
.video-block {
    max-width: 360px;
    margin: 0 auto 4rem;
    text-align: center;
}
.video-container {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 9/16;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    color: var(--color-bg);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}
.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
.play-btn svg {
    width: 30px;
    height: 30px;
    margin-left: 5px;
}
.video-caption {
    font-family: var(--font-mono);
    color: var(--color-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-top: 1rem;
    letter-spacing: 0.1em;
}
.testimonials-grid {
    column-count: 3;
    column-gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.test-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-card);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(61,31,13,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    break-inside: avoid;
}
.test-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(200,134,10,0.15);
}
.stars {
    color: var(--color-accent);
    margin-bottom: 1rem;
}
.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}
.author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-secondary);
}
.location {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Products */
.products {
    background-color: var(--color-bg-warm);
    padding: 8rem 2rem;
}
.products-header h2 {
    font-family: var(--font-hero);
    font-size: 3rem;
    font-style: italic;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-primary);
}
.product-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}
.prod-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
}
.prod-item.large {
    grid-column: span 2;
    grid-row: span 2;
}
.prod-item.tall {
    grid-row: span 2;
}
.prod-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.prod-item:hover img {
    transform: scale(1.05);
}
.prod-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 1.5rem;
    transition: border-color 0.3s ease;
    pointer-events: none;
}
.prod-item:hover::after {
    border-color: var(--color-accent);
}
.prod-label {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--color-primary);
    color: var(--color-bg);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.prod-item:hover .prod-label {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.products-cta {
    text-align: center;
}
.products-cta p {
    font-family: var(--font-hero);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Contact */
.contact {
    background-color: var(--color-primary);
    padding: 8rem 2rem;
    color: var(--color-bg);
}
.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.brand-name {
    font-family: var(--font-hero);
    font-size: 3rem;
    font-style: italic;
    margin-bottom: 2rem;
}
.contact-detail, .contact-address {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}
.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}
.social-links a {
    color: var(--color-bg);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.social-links a:hover {
    color: var(--color-accent);
}
.contact-form .form-group {
    position: relative;
    margin-bottom: 2rem;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 1rem 0;
    color: var(--color-bg);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--color-accent);
}
.contact-form label {
    position: absolute;
    left: 0;
    top: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    opacity: 0.7;
}
.contact-form input:focus ~ label,
.contact-form input:valid ~ label,
.contact-form textarea:focus ~ label,
.contact-form textarea:valid ~ label {
    top: -1rem;
    font-size: 0.8rem;
    color: var(--color-accent);
}
.form-success {
    display: none;
    margin-top: 1rem;
    color: var(--color-accent);
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #2A1505;
    color: var(--color-bg);
    padding: 6rem 2rem 2rem;
    border-radius: 4rem 4rem 0 0;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1.8fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}
.footer-logo {
    height: 100px;
    margin-bottom: 1rem;
}
.footer-brand p {
    font-family: var(--font-hero);
    font-style: italic;
    opacity: 0.7;
}
.footer-links, .footer-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 1.5rem;
    align-content: start;
}
.footer-links a, .footer-products a, .footer-legal a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover, .footer-products a:hover, .footer-legal a:hover {
    color: var(--color-accent);
}
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    grid-column: span 2;
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}
.system-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-green-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(107, 158, 58, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(107, 158, 58, 0); }
    100% { box-shadow: 0 0 0 0 rgba(107, 158, 58, 0); }
}
.eco-statement {
    color: var(--color-accent);
}
.copyright {
    opacity: 0.4;
}

/* Glass vs Plastic Section (Hero Style) */
.glass-vs-plastic-hero {
    min-height: calc(100vh - 90px);
    align-items: flex-start;
    padding-top: 15vh;
}
.glass-vs-plastic-hero .hero-bg {
    background-size: contain;
    background-position: center right;
}
.glass-vs-plastic-hero .hero-overlay-fade {
    background: linear-gradient(to right, var(--color-bg) 0%, var(--color-bg) 45%, transparent 85%);
}
.gvp-title {
    font-family: var(--font-hero);
    font-size: clamp(3.5rem, 5vw, 4.5rem);
    color: var(--color-primary);
    font-weight: 500;
}
.gvp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.gvp-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.65rem;
    color: var(--color-text);
}
.check-icon {
    width: 32px;
    height: 32px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    padding: 6px;
    flex-shrink: 0;
}

/* Refill Banner */
.refill-banner {
    background-color: var(--color-primary);
    color: var(--color-bg);
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
}
.refill-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.refill-intro {
    flex: 1;
    min-width: 250px;
}
.refill-intro h2 {
    font-family: var(--font-hero);
    font-size: clamp(3rem, 4vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 500;
}
.refill-intro p {
    font-size: 1.35rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.5;
}
.learn-more {
    color: var(--color-bg);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s;
}
.learn-more:hover {
    opacity: 0.8;
}

.refill-steps {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1.5;
    min-width: 400px;
}
.step-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.2rem;
}
.step-icon-wrapper {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.step-icon {
    width: 30px;
    height: 30px;
    color: var(--color-bg);
}
.step-text {
    display: flex;
    flex-direction: column;
    padding-top: 0.2rem;
}
.step-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.step-text h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    line-height: 1;
}
.step-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.3;
    margin: 0;
}
.step-arrow {
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
}

.refill-stats-box {
    background-color: #E2E8DE;
    color: var(--color-primary);
    border-radius: 1rem;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    flex: 2;
    min-width: 500px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}
.stat-icon-img {
    width: 40px;
    height: 40px;
}
.stat-svg {
    width: 100%;
    height: 100%;
    color: var(--color-primary);
}
.stat-info h5 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-info p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(45, 80, 22, 0.2);
    z-index: 1;
}
/* Removed background photo from stats box */

/* Counter Bar */
.counter-bar {
    background-color: var(--color-surface);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 2.5rem 2rem;
    text-align: center;
}
.counter-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.counter-number {
    font-family: var(--font-hero);
    font-size: clamp(3.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}
.counter-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonials-grid { column-count: 2; }
    .product-collage { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* New Navbar */
    .navbar {
        padding: 0.15rem 0;
    }
    .nav-brand-text {
        font-size: 1.55rem;
    }
    .logo img {
        width: 75px;
    }
    .navbar.scrolled .logo img {
        width: 70px;
    }
    .hamburger-new {
        gap: 4px;
        padding: 0.2rem;
    }
    .hamburger-new span {
        width: 22px;
    }
    .dropdown-menu {
        width: 220px;
        right: -10px;
    }
    
    /* New Hero */
    .hero {
        padding: 4rem 1.5rem 0;
        min-height: 60vh;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    .hero-title { 
        font-size: 2.8rem; 
        line-height: 1.15; 
        margin-bottom: 1rem; 
        color: #FFFFFF;
        font-weight: 600;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }
    .gvp-title {
        color: var(--color-primary) !important;
        text-shadow: none !important;
    }
    .hero-subline { 
        font-size: 1.15rem; 
        line-height: 1.5; 
        margin-bottom: 0; 
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
    }
    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -2;
    }
    #home.hero {
        height: calc(100dvh - 55px);
        min-height: auto;
        aspect-ratio: auto;
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 1.5rem 1.5rem 0;
        overflow: hidden;
    }
    #home .hero-bg {
        background-image: url('assets/hero_img_mo.png') !important;
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .glass-vs-plastic-hero .hero-bg {
        background-image: url('assets/who-we-are-bottle-2.png') !important;
        filter: brightness(0.7) contrast(1.1) !important;
        top: 160px !important;
        height: calc(100% - 160px) !important;
    }
    .glass-vs-plastic-hero .hero-overlay-fade {
        background: rgba(245, 240, 232, 0.6) !important;
        top: 160px !important;
        height: calc(100% - 160px) !important;
    }
    .glass-vs-plastic-hero .gvp-list li {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    .glass-vs-plastic-hero {
        padding-bottom: 4rem !important;
    }
    .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }
    #home .hero-text-wrap {
        display: block;
    }
    #home .hero-title {
        color: var(--color-text) !important;
        text-shadow: none !important;
        font-size: clamp(2.3rem, 7.5vw, 2.8rem);
        line-height: 1.15;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    #home .hero-subline {
        color: var(--color-text) !important;
        text-shadow: none !important;
        font-size: clamp(1.05rem, 4vw, 1.15rem);
        line-height: 1.45;
        margin-bottom: 0;
        font-weight: 600;
    }
    #home .hero-overlay-fade {
        display: block;
        background: linear-gradient(to bottom, rgba(245, 240, 232, 0.85) 0%, rgba(245, 240, 232, 0.5) 35%, transparent 50%) !important;
    }
    .hero-text-wrap {
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-bottom: 2rem;
        text-align: left;
    }
    .hero-btn {
        background-color: var(--color-accent) !important;
        color: var(--color-secondary) !important;
        font-weight: 700;
        border-radius: 6px;
    }
    #home .hero-buttons {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        padding-left: 0;
    }
    .hero-overlay-fade {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(20, 35, 10, 0.95) 0%, rgba(20, 35, 10, 0.6) 45%, transparent 85%);
        z-index: -1;
    }
    
    /* New Features Bar */
    .features-bar {
        padding: 2.5rem 1rem;
    }
    .features-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem 1rem;
        width: 100%;
    }
    .feature-item {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.6rem;
    }
    .feature-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Original */
    .story-container, .contact-container { grid-template-columns: 1fr; }
    .story-image-col { height: 400px; }
    .work-card { flex-direction: column; text-align: center; }
    .testimonials-grid { column-count: 1; }
    .product-collage { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-links, .footer-products {
        grid-template-columns: 1fr;
        gap: 0.8rem 0;
    }
    .footer-heading {
        grid-column: span 1;
        margin-top: 1.5rem;
    }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Refill Banner Mobile Styles */
    .refill-banner {
        padding: 4rem 1.5rem;
    }
    .refill-container {
        flex-direction: column;
        align-items: stretch;
        gap: 3rem;
    }
    .refill-intro {
        text-align: center;
    }
    .refill-steps {
        flex-direction: column;
        min-width: 100%;
        gap: 2rem;
    }
    .step-item {
        width: 100%;
    }
    .step-arrow {
        display: none;
    }
    .refill-stats-box {
        flex-direction: column;
        min-width: 100%;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
        align-items: center;
    }
    .refill-stats-box .stat-divider {
        width: 100%;
        height: 1px;
        background-color: rgba(45, 80, 22, 0.1);
    }
}
@media (max-width: 480px) {
    .product-collage { grid-template-columns: 1fr; }
    .prod-item.large { grid-column: span 1; }
}

/* Educational / Know Your Oil Section */
.edu-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background-color: var(--color-bg);
}
.edu-hero-container {
    max-width: 800px;
    margin: 0 auto;
}
.edu-hero-title {
    font-family: var(--font-hero);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}
.edu-hero-subline {
    font-family: var(--font-body);
    font-size: 1.35rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.edu-articles {
    padding: 2rem 2rem 6rem;
    background-color: var(--color-bg);
}
.articles-grid {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.article-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(61,31,13,0.05);
    border: 1px solid rgba(61,31,13,0.05);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(200,134,10,0.12);
    border-color: rgba(200,134,10,0.3);
}
.article-card-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: #FFFFFF;
}
.article-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sediment-img {
    object-fit: contain !important;
    background-color: #FFFFFF !important;
}
.article-card:hover .article-card-img {
    transform: scale(1.05);
}
.article-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.article-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.4;
    margin-bottom: 2rem;
    flex: 1;
}
.article-card-link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: color 0.3s;
}
.article-card:hover .article-card-link {
    color: var(--color-accent-light);
}

.edu-cta {
    text-align: center;
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 31, 13, 0.65); /* Darker backdrop for premium contrast */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-container {
    background-color: var(--color-surface);
    border-radius: var(--radius-card);
    width: 90%;
    max-width: 800px;
    max-height: 90vh; /* Keep the modal within bounds of screen height */
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(200, 134, 10, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}
.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10; /* Keep it above other elements */
    transition: background-color 0.3s, color 0.3s;
}
.modal-close-btn:hover {
    background-color: rgba(61, 31, 13, 0.05);
    color: var(--color-primary);
}
.modal-title {
    font-family: var(--font-hero);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    flex-shrink: 0; /* Never shrink the title */
    padding-right: 2.5rem; /* Avoid overlap with absolute close button */
}
.modal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto; /* Enable scroll if content is long */
    flex: 1; /* Grow to fill space */
    min-height: 0; /* Crucial for flex scrolling */
    padding-right: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

/* Custom premium scrollbar for lists inside modal */
.modal-list::-webkit-scrollbar,
.modal-compare-grid::-webkit-scrollbar {
    width: 6px;
}
.modal-list::-webkit-scrollbar-track,
.modal-compare-grid::-webkit-scrollbar-track {
    background: transparent;
}
.modal-list::-webkit-scrollbar-thumb,
.modal-compare-grid::-webkit-scrollbar-thumb {
    background-color: rgba(61, 31, 13, 0.2);
    border-radius: 3px;
}
.modal-list::-webkit-scrollbar-thumb:hover,
.modal-compare-grid::-webkit-scrollbar-thumb:hover {
    background-color: rgba(61, 31, 13, 0.4);
}

.modal-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.5;
}
.modal-list li svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .modal-container {
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
        width: 95%;
        max-height: 85vh; /* Keep height compact on small mobile screens */
    }
    .modal-close-btn {
        top: 0.8rem;
        right: 0.8rem;
        width: 36px;
        height: 36px;
        font-size: 1.8rem;
    }
    .modal-title {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
        padding-right: 2.5rem; /* Ensure title doesn't overlap close button */
    }
}

/* Contact Page Specific Styles */
.contact-page-wrapper {
    padding: 4.5rem 2rem 4rem;
    background-color: var(--color-bg);
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

.contact-page-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-page-title {
    font-family: var(--font-hero);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: var(--color-text);
    font-weight: 500;
}

.contact-page-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.contact-page-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-page-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.contact-page-icon {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-page-item-content h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.contact-page-item-content p, 
.contact-page-item-content a {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.contact-page-item-content a:hover {
    color: var(--color-primary);
}

.contact-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-bg);
    border: none;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.15);
    margin-top: 1rem;
}

.contact-page-btn:hover {
    background-color: var(--color-green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.25);
}

/* Middle Column - Form fields */
.contact-page-form-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.contact-page-form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-page-form-group input,
.contact-page-form-group textarea {
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid rgba(122, 102, 82, 0.2);
    border-radius: 0.5rem;
    padding: 1.1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-text);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.01);
}

.contact-page-form-group input:focus,
.contact-page-form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.contact-page-form-group textarea {
    resize: none;
    min-height: 160px;
}

/* Right Column - Map */
.contact-page-map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(122, 102, 82, 0.15);
}

.contact-page-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    display: block;
}

/* Bottom Value Strip */
.contact-page-value-strip {
    max-width: 1200px;
    margin: 4rem auto 0;
    background-color: var(--color-bg-warm);
    border-radius: 1.5rem;
    padding: 2.5rem 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    border: 1px solid rgba(122, 102, 82, 0.1);
}

.contact-page-value-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.contact-page-value-icon {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-page-value-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

.contact-page-value-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Media Queries */
@media (max-width: 1024px) {
    .contact-page-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .contact-page-map-wrapper {
        grid-column: span 2;
        min-height: 400px;
    }
    .contact-page-map-wrapper iframe {
        min-height: 400px;
    }
    .contact-page-value-strip {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-page-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-page-map-wrapper {
        grid-column: span 1;
        min-height: 320px;
    }
    .contact-page-map-wrapper iframe {
        min-height: 320px;
    }
    .contact-page-wrapper {
        padding: 4rem 1.5rem 3rem;
    }
}

/* About Us Page Specific Styles */
.about-page-wrapper {
    padding: 1.5rem 2rem 4rem;
    background-color: var(--color-bg);
}

.about-page-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-page-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-page-title {
    font-family: var(--font-hero);
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    line-height: 1.15;
    color: var(--color-text);
    font-weight: 500;
}

.about-page-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
}

.about-page-text p {
    margin-bottom: 1.2rem;
    white-space: pre-line; /* preserves paragraph breaks */
}

.about-philosophy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2D5016;
    color: #FAF7F2;
    border: none;
    padding: 1.1rem 2.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 6px;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.about-philosophy-btn:hover {
    background-color: var(--color-green-light);
    transform: translateY(-2px);
}

.about-page-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(122, 102, 82, 0.15);
    background-color: #000;
}

.about-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 5-column values strip at the bottom */
.about-values-section {
    max-width: 1200px;
    margin: 5rem auto 0;
    border-top: 1px solid rgba(122, 102, 82, 0.15);
    padding-top: 4rem;
    scroll-margin-top: 120px;
}

.about-values-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.about-value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
}

.about-value-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    margin-bottom: 1.2rem;
    flex-shrink: 0;
}

.about-value-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.about-value-card p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Media Queries */
@media (max-width: 1024px) {
    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-values-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-values-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-page-wrapper {
        padding: 1.5rem 1.5rem 3rem;
    }
}

@media (max-width: 480px) {
    .about-values-strip {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Modal Comparative Grid Styles */
.modal-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    margin-top: 1.5rem;
    overflow-y: auto; /* Enable scroll if content is long */
    flex: 1; /* Grow to fill space */
    min-height: 0; /* Crucial for flex scrolling */
    padding-right: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.modal-compare-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background-color: rgba(61, 31, 13, 0.02); /* Premium background container */
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(61, 31, 13, 0.05);
}

.modal-compare-col h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    padding-bottom: 0.6rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid currentColor;
    flex-shrink: 0;
}

.modal-compare-col.benefits h4 {
    color: var(--color-primary);
}

.modal-compare-col.negatives h4 {
    color: #C62828; /* Deep premium red */
}

.modal-compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.modal-compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.45;
}

.modal-compare-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

@media (max-width: 768px) {
    .modal-compare-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .modal-compare-col {
        padding: 1.2rem;
    }
}


