/* ===================================
   MOBILE VIEW FIXES ONLY
   Desktop view remains unchanged
   =================================== */

/* ===================================
   FIX 1: MARQUEE SECTION - MOBILE ONLY
   =================================== */
@media screen and (max-width: 768px) {
    .marquee-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100%;
        overflow: hidden;
        background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
        padding: 12px 0;
        position: relative;
        z-index: 10;
    }

    .marquee-content {
        display: flex !important;
        animation: marquee 25s linear infinite;
        white-space: nowrap;
    }

    .marquee-content span {
        display: inline-block !important;
        padding: 0 20px;
        color: white;
        font-size: 14px;
        font-weight: 500;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

/* ===================================
   FIX 2: CONTACT ACTION BUTTONS - MOBILE ONLY
   =================================== */
@media screen and (max-width: 768px) {
    .contact-actions {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column;
        position: fixed;
        right: 15px;
        bottom: 20px;
        gap: 12px;
        z-index: 99999;
    }

    .contact-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        text-decoration: none;
        color: white !important;
        font-size: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
    }

    .contact-btn.whatsapp {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    }

    .contact-btn.call {
        background: linear-gradient(135deg, #4285F4 0%, #0F52BA 100%) !important;
    }

    .contact-btn:active {
        transform: scale(0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .contact-btn i {
        color: white !important;
    }

    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        50% {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
    }
}

/* ===================================
   FIX 3: FOOTER - CONSISTENT STYLING - MOBILE ONLY
   =================================== */
@media screen and (max-width: 768px) {
    /* Main Footer Container */
    footer {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
        color: white !important;
        padding: 0;
        margin: 0;
    }

    .footer-main {
        padding: 40px 20px 20px;
        background: transparent;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 100%;
    }

    /* Footer Sections */
    .footer-section {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Logo Section */
    .footer-logo-section .footer-logo {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .footer-logo img {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        object-fit: contain;
    }

    .footer-logo-text h3 {
        font-size: 20px;
        margin: 0;
        color: white !important;
        font-weight: 600;
    }

    .footer-logo-text p {
        font-size: 12px;
        margin: 4px 0 0;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .footer-description {
        color: rgba(255, 255, 255, 0.8) !important;
        line-height: 1.6;
        font-size: 14px;
        margin: 15px 0;
    }

    /* Social Icons */
    .footer-social {
        display: flex;
        gap: 12px;
        margin-top: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white !important;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .social-icon.instagram {
        background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%) !important;
    }

    .social-icon.youtube {
        background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%) !important;
    }

    .social-icon.whatsapp {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    }

    .social-icon:active {
        transform: scale(0.95);
    }

    /* Footer Section Titles */
    .footer-section h3 {
        color: white !important;
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: 600;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-section h3:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #4a7c2c 0%, #2d5016 100%);
        border-radius: 2px;
    }

    /* Footer Links */
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8) !important;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .footer-links a:hover,
    .footer-links a:active {
        color: #4a7c2c !important;
        padding-left: 5px;
    }

    /* Contact Items */
    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
    }

    .footer-contact-icon {
        font-size: 20px;
        min-width: 24px;
    }

    .footer-contact-item a {
        color: rgba(255, 255, 255, 0.9) !important;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .footer-contact-item a:hover,
    .footer-contact-item a:active {
        color: #4a7c2c !important;
    }

    .footer-contact-item div {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 14px;
        line-height: 1.6;
    }

    /* Newsletter/Bulk Orders Form */
    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .newsletter-input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        color: white !important;
        font-size: 14px;
    }

    .newsletter-input:read-only {
        cursor: default;
        background: rgba(255, 255, 255, 0.05);
    }

    /* Call Button in Footer */
    .footer-section .product-cta {
        width: 100%;
        padding: 12px 20px;
        background: linear-gradient(135deg, #4a7c2c 0%, #2d5016 100%) !important;
        color: white !important;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        display: block;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .footer-section .product-cta:active {
        transform: scale(0.98);
    }

    /* Footer Bottom */
    .footer-bottom {
        background: rgba(0, 0, 0, 0.3) !important;
        padding: 20px;
        margin-top: 20px;
    }

    .footer-bottom-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .copyright p {
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 12px;
        margin: 0;
        line-height: 1.5;
    }

    /* Footer Badges */
    .footer-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .badge {
        padding: 6px 12px;
        background: rgba(74, 124, 44, 0.2);
        border: 1px solid rgba(74, 124, 44, 0.4);
        border-radius: 20px;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .badge span {
        color: rgba(255, 255, 255, 0.9) !important;
    }
}

/* ===================================
   DESKTOP VIEW - NO CHANGES
   These rules ensure desktop stays the same
   =================================== */
@media screen and (min-width: 769px) {
    /* All desktop styles remain unchanged */
    /* No overrides - let existing CSS handle desktop */
}
