
        /* Inherit main styles from existing website */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f9f0;
            color: #2d5016;
            line-height: 1.6;
        }

        /* Header styles - matching existing */
        header {
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(45, 80, 22, 0.08);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            position: relative;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, #3a7d34 0%, #8bc34a 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            font-size: 26px;
            color: #4caf50;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            margin: 0;
            padding: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-links a {
            text-decoration: none;
            color: #3d5a2a;
            font-weight: 600;
            font-size: 16px;
            padding: 8px 0;
            position: relative;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 9999;
        }

        .nav-links a:hover {
            color: #4caf50;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(to right, #4caf50, #8bc34a);
            bottom: 0;
            left: 0;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            color: #3a7d34;
        }

        .nav-links a.active::after {
            width: 100%;
            background: #3a7d34;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .btn {
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 15px;
            border: none;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #4caf50;
            color: #4caf50;
        }

        .btn-outline:hover {
            background: #4caf50;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(76, 175, 80, 0.2);
        }

        .btn-primary {
            background: linear-gradient(135deg, #4caf50 0%, #3a7d34 100%);
            color: white;
            border: none;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(76, 175, 80, 0.3);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #4caf50;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: background 0.3s ease;
            z-index: 1001;
        }

        /* Products Page Hero */
        .products-hero {
            background: linear-gradient(135deg, rgba(58, 125, 52, 0.9) 0%, rgba(45, 80, 22, 0.95) 100%), 
                        url('Img/site.jpeg');
            background-size: cover;
            background-position: center;
            padding: 100px 0 60px;
            text-align: center;
            color: white;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
            min-height: 350px;
        }

        .products-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,20 Q50,5 70,20 Q85,40 70,60 Q50,85 30,60 Q15,40 30,20 Z" fill="%238bc34a" opacity="0.1"/></svg>');
            background-size: 200px;
            animation: float 20s linear infinite;
        }

        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-20px, -20px) rotate(360deg); }
        }

        .products-hero h1 {
            font-size: 42px;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .products-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 20px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        /* Products Section */
        .products-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .section-subtitle {
            font-size: 18px;
            color: #4caf50;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
        }

        .section-subtitle i {
            font-size: 20px;
        }

        .section-title {
            font-size: 36px;
            color: #2d5a27;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.2;
        }

        .section-title span {
            background: linear-gradient(135deg, #3a7d34 0%, #8bc34a 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .section-description {
            font-size: 17px;
            color: #4a6b2f;
            margin-bottom: 50px;
            line-height: 1.7;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Products Filter */
        .products-filter {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 25px;
            background: #f0f7e8;
            border: 2px solid #e8f5e9;
            border-radius: 50px;
            font-weight: 600;
            color: #3a7d34;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, #4caf50 0%, #3a7d34 100%);
            color: white;
            border-color: #3a7d34;
            transform: translateY(-2px);
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .product-card {
            background: #f9fdf5;
            border-radius: 18px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 2px solid #e8f5e9;
            position: relative;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(76, 175, 80, 0.15);
            border-color: #4caf50;
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            z-index: 2;
        }

        .product-badge.best-seller {
            background: linear-gradient(135deg, #4caf50 0%, #3a7d34 100%);
        }

        .product-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(58, 125, 52, 0.1), rgba(58, 125, 52, 0.3));
        }

        .product-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-category {
            display: inline-block;
            background: #e8f5e9;
            color: #3a7d34;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
            align-self: flex-start;
        }

        .product-title {
            font-size: 20px;
            color: #2d5a27;
            margin-bottom: 10px;
            font-weight: 700;
            line-height: 1.3;
        }

        .product-description {
            color: #4a6b2f;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .product-pricing {
            margin: 20px 0;
            padding: 15px;
            background: #f0f7e8;
            border-radius: 10px;
        }

        .price-main {
            font-size: 28px;
            font-weight: 800;
            color: #3a7d34;
            line-height: 1;
            margin-bottom: 5px;
        }

        .price-currency {
            font-size: 18px;
            vertical-align: top;
            margin-right: 3px;
        }

        .price-conversion {
            font-size: 14px;
            color: #4a6b2f;
            margin-bottom: 8px;
        }

        .min-order {
            font-size: 13px;
            color: #666;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: 8px;
        }

        .min-order i {
            color: #ff9800;
        }

        .product-features {
            margin: 15px 0;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 8px;
            color: #4a6b2f;
            font-size: 13px;
        }

        .feature-item i {
            color: #4caf50;
            font-size: 12px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .product-footer {
            margin-top: auto;
        }

        .btn-product {
            width: 100%;
            padding: 12px;
            font-size: 15px;
            font-weight: 700;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
        }

        .btn-product-primary {
            background: linear-gradient(135deg, #4caf50 0%, #3a7d34 100%);
            color: white;
        }

        .btn-product-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(76, 175, 80, 0.3);
        }

        .btn-product-secondary {
            background: #e8f5e9;
            color: #3a7d34;
            border: 2px solid #c8e6c9;
        }

        .btn-product-secondary:hover {
            background: #c8e6c9;
            transform: translateY(-2px);
        }

        /* Delivery Info Section */
        .delivery-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f9fdf5 0%, #e8f5e9 100%);
            border-radius: 18px;
            margin-bottom: 60px;
        }

        .delivery-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .delivery-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .delivery-info h3 {
            font-size: 28px;
            color: #2d5a27;
            margin-bottom: 15px;
        }

        .delivery-list {
            list-style: none;
            margin: 25px 0;
        }

        .delivery-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 15px;
            color: #4a6b2f;
        }

        .delivery-list i {
            color: #4caf50;
            font-size: 18px;
            width: 28px;
            flex-shrink: 0;
        }

        .delivery-note {
            background: white;
            padding: 20px;
            border-radius: 8px;
            border-left: 5px solid #ff9800;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
            margin-top: 30px;
        }

        .delivery-note h4 {
            color: #e65100;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 17px;
        }

        .delivery-note p {
            color: #4a6b2f;
            margin: 0;
            font-size: 14px;
        }

        /* Packaging Options */
        .packaging-section {
            padding: 60px 0;
            background-color: #ffffff;
        }

        .packaging-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .packaging-option {
            background: #f9fdf5;
            padding: 30px;
            border-radius: 12px;
            border: 2px solid #e8f5e9;
            text-align: center;
        }

        .packaging-icon {
            font-size: 40px;
            color: #4caf50;
            margin-bottom: 20px;
        }

        .packaging-option h4 {
            font-size: 20px;
            color: #2d5a27;
            margin-bottom: 10px;
        }

        .packaging-option p {
            color: #4a6b2f;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .packaging-price {
            font-size: 24px;
            font-weight: 700;
            color: #3a7d34;
        }

        /* Order Process */
        .order-section {
            padding: 60px 0;
            background-color: #f9fdf5;
        }

        .order-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .order-step {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            border: 2px solid #e8f5e9;
            transition: all 0.3s ease;
        }

        .order-step:hover {
            transform: translateY(-5px);
            border-color: #4caf50;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4caf50 0%, #3a7d34 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .order-step h4 {
            font-size: 18px;
            color: #2d5a27;
            margin-bottom: 10px;
        }

        .order-step p {
            color: #4a6b2f;
            font-size: 14px;
            line-height: 1.6;
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, #3a7d34 0%, #2d5a27 100%);
            color: white;
            padding: 50px;
            border-radius: 18px;
            text-align: center;
            margin: 40px 0;
        }

        .cta-banner h3 {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .cta-banner p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-banner .btn {
            padding: 14px 40px;
            font-size: 16px;
            font-weight: 700;
        }

        /* Footer Styles - matching existing */
        footer {
            background: linear-gradient(135deg, #1e3e1a 0%, #2d5a27 100%);
            color: white;
            padding: 60px 0 25px;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #8bc34a;
            position: relative;
            padding-bottom: 8px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 45px;
            height: 2px;
            background: #8bc34a;
            border-radius: 2px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 800;
            color: #8bc34a;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
        }

        .footer-about p {
            color: #e8f5e9;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 15px;
        }

        .social-link {
            width: 36px;
            height: 36px;
            background: rgba(139, 195, 74, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8bc34a;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #8bc34a;
            color: white;
            transform: translateY(-2px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #e8f5e9;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: #8bc34a;
            transform: translateX(4px);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #e8f5e9;
            font-size: 14px;
        }

        .contact-item i {
            color: #8bc34a;
            font-size: 16px;
            margin-top: 3px;
        }

        .newsletter {
            margin-top: 15px;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
        }

        .newsletter-input {
            flex: 1;
            padding: 8px 12px;
            border: 1px solid rgba(139, 195, 74, 0.3);
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 14px;
        }

        .newsletter-btn {
            padding: 8px 16px;
            background: #8bc34a;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .newsletter-btn:hover {
            background: #7cb342;
            transform: translateY(-1px);
        }

        .footer-bottom {
            position: relative;
            z-index: 1;
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #a5d6a7;
            font-size: 13px;
        }

        .footer-bottom p {
            margin-bottom: 8px;
        }

        .footer-links-bottom {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 12px;
            font-size: 12px;
        }

        /* Responsive Design */
        @media screen and (max-width: 1100px) {
            .nav-links {
                gap: 30px;
            }
            
            .products-hero h1 {
                font-size: 38px;
            }
            
            .delivery-grid,
            .packaging-options {
                gap: 40px;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media screen and (max-width: 992px) {
            .nav-links {
                gap: 24px;
            }
            
            .products-hero h1 {
                font-size: 34px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .price-main {
                font-size: 24px;
            }
            
            .delivery-grid,
            .packaging-options {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .delivery-image {
                order: 2;
            }
            
            .order-steps {
                grid-template-columns: 1fr;
            }
        }

        @media screen and (max-width: 768px) {
            .products-hero {
                margin-top: 70px;
                padding: 80px 0 40px;
                min-height: 280px;
            }
            
            .navbar {
                padding: 15px 0;
            }

            .mobile-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 25px 0;
                gap: 20px;
                box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
                z-index: 999;
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-actions {
                display: none;
            }
            
            .products-hero h1 {
                font-size: 30px;
            }
            
            .products-hero p {
                font-size: 16px;
            }
            
            .products-section {
                padding: 60px 0;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .products-filter {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .filter-btn {
                padding: 8px 20px;
                font-size: 14px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .delivery-section,
            .packaging-section,
            .order-section {
                padding: 50px 0;
            }
            
            .cta-banner {
                padding: 30px 20px;
            }
            
            .cta-banner h3 {
                font-size: 26px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media screen and (max-width: 480px) {
            .logo {
                font-size: 24px;
            }
            
            .products-hero h1 {
                font-size: 26px;
            }
            
            .product-card {
                margin-bottom: 20px;
            }
            
            .product-content {
                padding: 20px;
            }
            
            .packaging-option {
                padding: 20px;
            }
            
            .order-step {
                padding: 20px;
            }
            
            .cta-banner h3 {
                font-size: 22px;
            }
            
            .cta-banner p {
                font-size: 16px;
            }
        }

        /* Moving Text Banner */
    .moving-text-banner {
        position: fixed;
        top: 100px;
        right: 0;
        width: 100%;
        height: 45px;
        background: linear-gradient(90deg, rgba(58, 125, 52, 0.9), rgba(179, 204, 181, 0.85));
        color: white;
        overflow: hidden;
        z-index: 1;
        border-bottom-left-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        border-left: 4px solid #ffc107;
        pointer-events: none; /* Prevent covering hero text */
    }

    .moving-text-container {
        flex: 1;
        overflow: hidden;
        height: 100%;
        position: relative;
        pointer-events: none;
    }

    .moving-text-content {
        display: inline-flex;
        animation: scrollText 20s linear infinite;
        white-space: nowrap;
        height: 100%;
        align-items: center;
        pointer-events: none;
    }

    @keyframes scrollText {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }

    .moving-text-item {
        display: inline-flex;
        align-items: center;
        padding: 0 25px;
        font-size: 14px;
        font-weight: 500;
        height: 100%;
        pointer-events: none;
    }

    .moving-text-item i {
        margin-right: 10px;
        font-size: 16px;
        color: #ffc107;
    }

    /* Responsive Design */
    @media screen and (max-width: 1100px) {
        .moving-text-banner {
            width: 50%;
            top: 100px;
        }
        
        .moving-text-item {
            padding: 0 20px;
            font-size: 13px;
        }
    }

    @media screen and (max-width: 768px) {
        .moving-text-banner {
            width: 100%;
            top: 90px;
            height: 40px;
            border-radius: 0;
            border-left: none;
            border-bottom: 3px solid #ffc107;
        }
        
        .moving-text-item {
            padding: 0 20px;
            font-size: 13px;
        }
        
        .moving-text-item i {
            font-size: 14px;
            margin-right: 8px;
        }
        
        @keyframes scrollText {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
    }

    @media screen and (max-width: 480px) {
        .moving-text-banner {
            height: 35px;
            top: 90px;
        }
        
        .moving-text-item {
            padding: 0 15px;
            font-size: 12px;
        }
        
        .moving-text-item i {
            font-size: 12px;
            margin-right: 6px;
        }
    }

    /* Ensure hero text is not covered */
    .hero-content {
        position: relative;
        z-index: 101;
    }

    



    /* Order Button Styles */
.order-wrapper {
    width: 100%;
}

.order-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4caf50, #3a7d34);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.3);
}

/* Modal Styles */
.order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.order-modal.show {
    display: flex;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    padding: 20px;
    border-bottom: 2px solid #e8f5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f5f9f0, #e8f5e9);
    border-radius: 16px 16px 0 0;
}

.modal-header h4 {
    color: #2d5a27;
    font-size: 18px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #4a6b2f;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(76, 175, 80, 0.1);
    color: #ff4444;
}

.modal-body {
    padding: 20px;
}

.modal-product-info {
    color: #2d5a27;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 12px;
    background: #f5f9f0;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
    word-break: break-word;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
    border: none;
}

.modal-option.whatsapp {
    background: #25D366;
    color: white;
}

.modal-option.whatsapp:hover {
    background: #128C7E;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.modal-option.email {
    background: #4caf50;
    color: white;
}

.modal-option.email:hover {
    background: #3a7d34;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.modal-option i {
    font-size: 28px;
    width: 40px;
    text-align: center;
}

.modal-option .option-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.modal-option strong {
    font-size: 16px;
    margin-bottom: 4px;
}

.modal-option span {
    font-size: 13px;
    opacity: 0.9;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: 380px;
    }
    
    .modal-option {
        padding: 12px;
    }
    
    .modal-option i {
        font-size: 24px;
    }
    
    .modal-option strong {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .order-btn {
        padding: 12px;
        font-size: 15px;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-product-info {
        font-size: 14px;
        padding: 10px;
    }
    
    .modal-option {
        padding: 10px;
    }
    
    .modal-option i {
        font-size: 22px;
        width: 30px;
    }
    
    .modal-option strong {
        font-size: 14px;
    }
    
    .modal-option span {
        font-size: 12px;
    }
}
