                                                                 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4NMNXSTXEC"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-4NMNXSTXEC');
</script>

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 30px;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 3px solid #4CAF50;
    margin-bottom: 30px;
    background: white;
}

.logo h1 {
    color: #4CAF50;
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.tagline {
    color: #666;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.support h2 {
    color: #4CAF50;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.support h2:hover {
    color: #45a049;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.1);
}

.hero h2 {
    color: #2E7D32;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero p {
    color: #555;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.search-box input:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.search-box button {
    padding: 15px 35px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Products Section */
.products-section h3 {
    color: #333;
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.products-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    border-radius: 3px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.15);
    border-color: #4CAF50;
}
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-thumb {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-name {
    color: #333;
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 600;
}

.product-local-name {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
    font-style: italic;
}

.product-price {
    color: #4CAF50;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 40px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: white;
    color: #4CAF50;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quantity-btn:hover {
    background: #4CAF50;
    color: white;
    transform: scale(1.1);
}

.quantity {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.add-to-cart {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.no-results {
    text-align: center;
    padding: 60px;
    color: #666;
    font-size: 18px;
    grid-column: 1 / -1;
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 40px;
    grid-column: 1 / -1;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4CAF50;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.cart-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.cart-total {
    margin-top: 20px;
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    color: #4CAF50;
}

.close-cart {
    background: #ff4444;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 20px;
    }
    
    header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .hero {
        padding: 30px 20px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}/* ============================================
   FOOTER STYLES - COMPLETE FIX FOR VISIBILITY
   ============================================ */

footer {
    background: #1a2a3a;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
    width: 100%;
}

/* Footer grid layout - 4 columns on desktop */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px;
}

/* Footer sections */
.footer-section {
    padding: 0 15px;
}

.footer-section h3 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #4CAF50;
}

.footer-section p {
    color: #ecf0f1;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4CAF50;
}

/* ============================================
   CONTACT FORM INPUTS - HIGH VISIBILITY FIX
   ============================================ */

.footer-section input,
.footer-section textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 12px;
    border: 1px solid #4CAF50;
    border-radius: 8px;
    background-color: #0d1c2a;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s;
    box-sizing: border-box;
}

/* Placeholder text - BRIGHT AND READABLE */
.footer-section input::placeholder,
.footer-section textarea::placeholder {
    color: #8ab3cf;
    opacity: 1;
    font-size: 13px;
}

/* For Firefox */
.footer-section input::-moz-placeholder,
.footer-section textarea::-moz-placeholder {
    color: #8ab3cf;
    opacity: 1;
}

/* For Internet Explorer */
.footer-section input:-ms-input-placeholder,
.footer-section textarea:-ms-input-placeholder {
    color: #8ab3cf;
}

.footer-section input:focus,
.footer-section textarea:focus {
    outline: none;
    border-color: #66bb6a;
    background-color: #122433;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.25);
}

/* Submit button */
.footer-section button[type="submit"] {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 5px;
}

.footer-section button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049, #2e7d32);
}

/* Map container */
.footer-section .map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
}

.footer-section iframe {
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 8px;
}

/* Opening hours list */
.opening-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #3a5a6e;
    color: #ecf0f1;
}

.opening-hours li span:first-child {
    font-weight: 600;
}

.opening-hours li span:last-child {
    color: #4CAF50;
}

/* Contact info */
.contact-info {
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-info p span {
    color: #ecf0f1;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: #0d1c2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #4CAF50;
    transform: translateY(-3px);
}

/* Copyright section */
.copyright {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #3a5a6e;
    margin-top: 20px;
    color: #8ab3cf;
    font-size: 14px;
}

/* ============================================
   RESPONSIVE FOOTER
   ============================================ */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .opening-hours li {
        justify-content: center;
        gap: 20px;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-section input,
    .footer-section textarea {
        text-align: left;
    }
}    
    