/* Global Vars & Reset */
@import 'loader.css';

:root {
    --primary-color: #2d6a4f;
    --primary-light: #40916c;
    --primary-dark: #1b4332;
    --accent-color: #ffb703;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

/* SKELETON ANIMATION */
@keyframes skeleton-loading {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

.skeleton-box {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 400% 100%;
    animation: skeleton-loading 1.5s infinite;
}

.skeleton-line {
    height: 12px;
    margin-bottom: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 400% 100%;
    animation: skeleton-loading 1.5s infinite;
}

/* PREMIUM CART ITEMS */
.cart-item-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.cart-item-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.unit-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-control {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 4px;
    border-radius: 30px;
    gap: 8px;
}

.qty-control button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    font-size: 0.8rem;
}

.qty-control button:hover {
    background: var(--primary-color);
    color: white;
}

.remove-btn {
    color: #ff5252;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    transition: var(--transition);
}

.remove-btn:hover {
    transform: scale(1.1);
}

.cart-bump {
    animation: bump 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bump {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.empty-cart-icon {
    width: 60px;
    height: 60px;
    background: #e9f5ed;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.cart-flyer {
    position: fixed;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: var(--shadow-md);
}

.cart-flyer i {
    font-size: 1.2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Prevent horizontal scroll on all devices */
html,
body {
    max-width: 100%;
    overflow-x: hidden !important;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.4);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-white {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.2rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 150px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links .btn-primary {
    margin-left: 1.5rem;
    padding: 0.6rem 1.5rem;
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('../img/hero-bg.jpg') no-repeat center center/cover;
    background-color: #e8f5e9;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding-top: 180px;
}

.hero h1.hero-title-dynamic {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero h1.hero-title-premium {
    font-size: 5rem;
    /* Slightly larger for impact */
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.dynamic-wrap {
    height: 1.2em;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

#cycle-label {
    display: inline-block;
    transition: none;
    /* Handled by animation */
}

#cycle-icon {
    font-size: 0.9em;
    transition: var(--transition);
}

/* THE ANIMATIONS */
.reveal-up {
    animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.exit-up {
    animation: exitUp 0.5s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}

@keyframes revealUp {
    0% {
        transform: translateY(100.5%) skewY(5deg);
        filter: blur(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0) skewY(0);
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes exitUp {
    0% {
        transform: translateY(0) skewY(0);
        filter: blur(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100.5%) skewY(-5deg);
        filter: blur(5px);
        opacity: 0;
    }
}

/* Color Themes for the icons/text */
.theme-fruit #cycle-icon {
    color: #fb8500;
    filter: drop-shadow(0 0 15px rgba(251, 133, 0, 0.5));
}

.theme-fruit #cycle-label {
    color: #fb8500;
}

.theme-veggie #cycle-icon {
    color: #52b788;
    filter: drop-shadow(0 0 15px rgba(82, 183, 136, 0.4));
}

.theme-veggie #cycle-label {
    color: #52b788;
}

.theme-box #cycle-icon {
    color: #f4a261;
    filter: drop-shadow(0 0 15px rgba(244, 162, 97, 0.4));
}

.theme-box #cycle-label {
    color: #f4a261;
}

.hero .highlight {
    color: var(--primary-light);
    font-style: italic;
    font-weight: 300;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Organic Shapes */
.leaf {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.leaf-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    filter: blur(80px);
}

.leaf-2 {
    bottom: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    filter: blur(100px);
}

/* Catalog & Filters */
.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Simple & Fluid Left-to-Right Marquee */
.featured-slider-wrapper {
    position: relative;
    padding: 40px 0;
    margin: 2rem 0;
    overflow: hidden;
    background: rgba(45, 106, 79, 0.02);
}

.featured-scroll-container {
    width: 100%;
    overflow: hidden;
}

.featured-products-grid {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marqueeRightToLeft 40s linear infinite;
}

/* Pause on hover to allow exploration */
.featured-slider-wrapper:hover .featured-products-grid {
    animation-play-state: paused;
}

@keyframes marqueeRightToLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

.featured-products-grid .product-card {
    flex: 0 0 300px;
    transition: transform 0.3s ease;
}

.featured-products-grid .product-card:hover {
    transform: translateY(-10px);
}

/* Hide navigation for the auto-marquee */
.slider-dots,
.slider-nav {
    display: none !important;
}

@media (max-width: 768px) {
    .featured-products-grid .product-card {
        flex: 0 0 280px;
    }
}

/* Product Interactions */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 50, 0, 0.1);
    border-color: var(--secondary-color);
}

.product-image {
    height: 220px;
    background-color: var(--bg-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(2deg);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: rotate(-15deg) scale(1.2);
}

.product-info {
    padding: 1.5rem;
}

.product-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary-light);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.juice-format-selector {
    display: flex;
    gap: 10px;
}

.format-btn {
    flex: 1;
    padding: 8px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.format-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.format-btn:hover:not(.active) {
    background: #f8fafc;
    border-color: var(--primary-color);
}

.add-to-cart-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-off-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Features */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a4d10 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.brand-pattern {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%) rotate(-15deg);
    width: 350px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    .brand-pattern {
        width: 200px;
        right: -10%;
        opacity: 0.03;
    }
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
}

.feature-card:hover .icon {
    transform: rotateY(180deg);
    background: white;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Blog */
.bg-light {
    background-color: var(--bg-off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 2rem;
}

.blog-tag {
    background: var(--secondary-color);
    color: #0d3810;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
    line-height: 1.3;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

/* Opportunities */
#opportunites {
    background: linear-gradient(rgba(27, 94, 32, 0.9), rgba(27, 94, 32, 0.9)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 0;
}

#opportunites h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

#opportunites p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #111;
    color: #ccc;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-col p,
.footer-col a {
    display: block;
    margin-bottom: 0.8rem;
    color: #999;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    color: white !important;
    font-size: 1.2rem;
    transition: var(--transition);
    margin-bottom: 0 !important;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    margin-left: 0 !important;
}

.footer-col a:hover {
    color: var(--primary-color);
    margin-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 900;
}

.cart-floater,
.whatsapp-floater {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cart-floater {
    background: white;
    color: var(--text-dark);
    position: relative;
    font-size: 1.5rem;
}

.whatsapp-floater {
    background: #25D366;
    color: white;
    font-size: 2rem;
}

.cart-floater:hover,
.whatsapp-floater:hover {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease-out;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin: 1.5rem 0;
    min-height: 100px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.full-width {
    width: 100%;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icons in buttons */
.btn-primary i,
.btn-secondary i,
.btn-white i {
    vertical-align: middle;
    margin-right: 5px;
    font-size: 1.1em;
}

.read-more i {
    vertical-align: middle;
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Mobile Menu Icon */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--text-dark);
    z-index: 1100;
    /* Above nav-links */
}

/* Animations handled by AOS library now */

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .logo img {
        height: 80px;
    }

    .hero h1.hero-title-premium {
        font-size: 3.5rem;
    }

    .hero h1.hero-title-dynamic {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        width: 92%;
    }

    .hero {
        height: auto;
        padding: 140px 0 60px;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero h1.hero-title-premium {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .hero h1.hero-title-dynamic {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(15px);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 1.2rem 0;
        font-size: 1.4rem;
        font-weight: 700;
        width: 80%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 0.5rem;
    }

    .nav-links .btn-primary {
        width: 80%;
        margin: 1rem 0 0 0;
        border: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    .btn-secondary,
    .btn-primary,
    .btn-white {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .filters {
        gap: 0.5rem;
        padding: 0 10px;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .filter-btn {
        padding: 0.5rem 1.2rem;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-price {
        font-size: 0.95rem;
    }

    .product-image {
        height: 160px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1.hero-title-premium {
        font-size: 2.2rem;
    }

    .dynamic-wrap {
        gap: 10px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 1.5rem 1rem;
        width: 95%;
    }
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.cart-floater,
.whatsapp-floater {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cart-floater {
    background-color: var(--primary-color);
    position: relative;
}

.whatsapp-floater {
    background-color: #25d366;
}

.cart-floater:hover,
.whatsapp-floater:hover {
    transform: scale(1.1) translateY(-5px);
}

.cart-floater .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff5252;
    color: white;
    font-size: 0.8rem;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    /* Controlled by JS */
    align-items: center;
    justify-content: center;
    z-index: 3000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray);
}

.cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin: 1.5rem 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-total {
    border-top: 2px solid var(--primary-color);
    padding-top: 1rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
}

.checkout-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.empty-msg {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-gray);
}

/* Premium Touches */
.whatsapp-floater {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-color);
    z-index: 2000;
    transition: width 0.1s ease;
}

.search-wrapper input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.1);
    transform: scale(1.02);
}

#contact-form-element input:focus,
#contact-form-element textarea:focus {
    border-color: var(--primary-color) !important;
    outline: none;
    background: #f9fff9;
}

.contact-info-grid>div {
    transition: var(--transition);
}

.contact-info-grid>div:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .relay-grid {
        grid-template-columns: 1fr;
    }

    .relay-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}

/* Potager City Inspired Styles */
.subscription-section {
    background-color: var(--bg-off-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured::before {
    content: 'CONSEILLÉ';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 700;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.pricing-card ul li i {
    color: #4caf50;
    font-size: 1.2rem;
}

/* Relay Points Section */
.relay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.relay-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    align-items: center;
    transition: var(--transition);
}

.relay-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.relay-card i {
    font-size: 2rem;
    color: var(--primary-color);
    background: var(--bg-off-white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.relay-card h4 {
    margin-bottom: 0.2rem;
    color: var(--primary-dark);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.relay-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* Anti-Gaspi Styling */
@keyframes pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

#antigaspi-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

#antigaspi-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.05) 0%, transparent 70%);
    z-index: 1;
}

#antigaspi-container .product-card {
    border: 2px solid transparent;
    transition: var(--transition);
}

#antigaspi-container .product-card:hover {
    border-color: #fab1a0;
}

#antigaspi-container .btn-primary:hover {
    background: #e66767 !important;
    border-color: #e66767 !important;
    transform: translateY(-2px);
}