:root {
    --primary-color: #006400; /* Keells Dark Green */
    --primary-light: #4caf50;
    --accent-color: #f47920; /* Orange */
    --bg-color: #f4f4f4;
    --card-bg: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-family: 'Inter', 'Noto Sans Sinhala', sans-serif; }
body { background-color: var(--bg-color); color: var(--text-color); }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* Header Top */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-top {
    background-color: var(--card-bg);
    border-bottom: 2px solid var(--primary-color);
    padding: 10px 0;
}
.header-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.logo-container {
    cursor: pointer;
}
.logo-container h2 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 800;
}
.categories-dropdown {
    position: relative;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    min-width: 180px;
    justify-content: space-between;
}
.categories-dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 4px 4px;
}
.dropdown-menu li {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}
.dropdown-menu li:hover {
    background-color: #f0f8f1;
    color: var(--primary-color);
}
.dropdown-menu li i { margin-right: 10px; width: 20px; text-align: center; }

/* Search Bar */
.search-bar {
    flex-grow: 1;
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    background: white;
}
.search-bar input {
    flex-grow: 1;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    outline: none;
}
.search-bar button {
    background: var(--primary-light);
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
}
.search-bar button:hover { background: var(--primary-color); }

/* Header Actions */
.header-actions {
    display: flex;
    gap: 20px;
}
.action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.action-item:hover { color: var(--primary-color); }
.action-item i { font-size: 20px; }
.cart-icon-wrapper { position: relative; }
#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
}

/* Header Bottom */
.header-bottom {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
}
.bottom-nav {
    display: flex;
    gap: 30px;
    font-size: 13px;
    font-weight: 600;
}
.bottom-nav a:hover {
    color: var(--accent-color);
}

/* Common Section */
main section {
    display: none;
    padding: 40px 0;
}
main section.section-active {
    display: block;
    animation: fadeIn 0.3s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Home Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
    margin-bottom: 40px;
}
.promo-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    color: white;
    padding: 25px;
    display: flex;
    flex-direction: column;
}
.card-content { z-index: 2; position: relative; }
.promo-img {
    position: absolute;
    z-index: 1;
    object-fit: cover;
}
.promo-img-right {
    right: -20px;
    bottom: -20px;
    height: 120%;
}
.promo-img-bottom {
    bottom: 0;
    right: 0;
    width: 60%;
    object-fit: contain;
}
.card-large { grid-column: span 2; grid-row: span 2; }
.card-medium { grid-column: span 2; }
.card-small { grid-column: span 1; }

.orange-card { background-color: #ef6c00; }
.grey-card { background-color: #90a4ae; }
.dark-green-card { background-color: #2e7d32; }
.light-green-card { background-color: #81c784; }
.light-grey-card { background-color: #e0e0e0; }
.text-dark { color: #333; }

.promo-card h3 { font-size: 28px; font-weight: 800; margin-bottom: 15px; line-height: 1.2; }
.card-small h3, .card-medium h3 { font-size: 20px; }
.shop-now-btn, .register-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}
.shop-now-btn:hover { background: #004d00; }
.orange-card .shop-now-btn { background: var(--primary-color); }
.dark-green-card .register-btn { background: white; color: var(--primary-color); }

/* Fresh from Farm */
.fresh-from-farm {
    margin: 40px 0;
    text-align: center;
}
.farm-title {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 700;
}
.farm-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
.farm-card {
    border-radius: 12px;
    color: white;
    text-align: center;
    position: relative;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: var(--transition);
}
.farm-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.farm-card h4 {
    font-size: 22px;
    font-weight: 800;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}
.farm-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.5s ease;
}
.farm-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    z-index: 1;
}
.farm-card:hover img {
    transform: scale(1.1);
}

/* Wide Promo Banner */
.wide-promo-banner {
    background-color: #6bb04b;
    border-radius: 12px;
    margin: 40px 0 50px 0;
    padding: 30px 40px;
    color: white;
    overflow: hidden;
    position: relative;
}
.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.banner-text-left h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}
.banner-features p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.banner-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.banner-center .pick-it {
    font-size: 42px;
    font-weight: 800;
    transform: rotate(-5deg);
    margin-bottom: 10px;
}
.banner-center .drop-it {
    font-size: 42px;
    font-weight: 800;
    transform: rotate(5deg);
    margin-top: 10px;
}
.center-text {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 14px;
    color: #e0f2d8;
}
.cart-banner-icon {
    font-size: 120px;
    color: rgba(255,255,255,0.3);
    transform: rotate(-10deg);
}

/* Featured Section */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.section-header h2 { color: var(--primary-color); }
.view-all { color: var(--accent-color); font-weight: 600; text-decoration: underline; }

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.product-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 15px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}
.product-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}
.product-category { font-size: 11px; color: var(--text-light); text-transform: uppercase; }
.product-title { font-weight: 600; font-size: 14px; margin-bottom: 5px; height: 40px; overflow: hidden; }
.product-title-si { font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.product-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-price { font-weight: 800; font-size: 16px; color: var(--primary-color); }
.add-to-cart-btn {
    background: var(--primary-light);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}
.add-to-cart-btn:hover { background: var(--primary-color); }

/* Shop Layout */
.shop-layout {
    display: flex;
    gap: 30px;
}
.shop-sidebar {
    width: 250px;
    flex-shrink: 0;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}
.shop-sidebar h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}
.sidebar-categories li {
    padding: 10px 0;
    cursor: pointer;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}
.sidebar-categories li:hover, .sidebar-categories li.active {
    color: var(--primary-color);
    padding-left: 10px;
    background: #f9f9f9;
}
.shop-main {
    flex-grow: 1;
}
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: white;
    padding: 15px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}
.shop-header select {
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

/* Delivery & About */
.page-title { color: var(--primary-color); margin-bottom: 30px; text-align: center; }
.delivery-card-large, .about-grid {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.about-grid { display: grid; grid-template-columns: 1fr 2fr; }
.delivery-banner, .about-image-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    background: var(--primary-color);
}
.delivery-info-content, .about-details {
    padding: 40px;
}
.contact-methods, .info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.contact-box, .info-item {
    background: var(--bg-color);
    padding: 20px;
    border-radius: var(--border-radius);
    flex: 1;
    min-width: 200px;
    text-align: center;
}
.info-item { display: flex; text-align: left; align-items: center; gap: 15px; }
.contact-box i, .info-item i { font-size: 30px; color: var(--primary-color); margin-bottom: 10px; }

/* Footer (Keells Style) */
.footer {
    background-color: var(--primary-color);
    color: white;
    margin-top: 60px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}
.address-col p, .address-col h3 { font-size: 12px; margin-bottom: 10px; }
.address-col h3 { font-size: 18px; color: var(--accent-color); margin: 15px 0 5px; }
.links-col ul li { margin-bottom: 10px; font-size: 13px; }
.links-col ul li a:hover { color: var(--accent-color); }

.footer-middle {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.newsletter span { font-weight: 600; }
.subscribe-form { display: flex; width: 60%; }
.subscribe-form input {
    flex-grow: 1;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 4px 0 0 4px;
}
.subscribe-form button {
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-left: none;
    color: white;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}
.subscribe-form button:hover { background: rgba(255,255,255,0.1); }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    margin-right: 10px;
    transition: var(--transition);
}
.social-icons a:hover { background: rgba(255,255,255,0.1); }
.copyright-payments {
    display: flex;
    align-items: center;
    gap: 20px;
}
.payment-icons { display: flex; gap: 10px; font-size: 24px; }
.copyright-payments p { font-size: 12px; opacity: 0.8; }

/* =========================================
   NEW PAGE SECTIONS CSS (Footer Links) 
   ========================================= */

/* Common Page Styles */
.page-header-container {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}
.page-subtitle {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 10px;
}
.content-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    line-height: 1.8;
}
.content-card h3 {
    color: var(--primary-color);
    margin: 30px 0 15px 0;
}
.content-card h3:first-child {
    margin-top: 0;
}
.divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 30px 0;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.faq-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}
.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.faq-icon {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.faq-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-color);
}
.faq-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Terms & Conditions */
.terms-list {
    list-style-type: disc;
    padding-left: 20px;
}
.terms-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-light);
}
.terms-list li strong {
    color: var(--text-color);
}

/* Stores Section */
.store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.store-info-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
}
.store-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}
.store-info-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 30px;
}
.store-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.store-detail i {
    color: var(--primary-light);
    font-size: 20px;
    margin-top: 3px;
}
.store-detail p {
    color: var(--text-light);
    line-height: 1.6;
}
.directions-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: var(--transition);
}
.directions-btn:hover {
    background: var(--primary-light);
}
.store-map-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
}
.map-placeholder {
    width: 100%;
    background: #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}
.map-placeholder i {
    font-size: 48px;
    color: #ced4da;
    margin-bottom: 15px;
}

/* Contact Us Section */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.contact-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 22px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}
.submit-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}
.submit-btn:hover {
    background: #e66a15;
}
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-sidebar-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}
.icon-large {
    font-size: 40px;
    color: var(--primary-light);
    margin-bottom: 20px;
}
.contact-sidebar-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}
.contact-sidebar-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}
.highlight-text {
    color: var(--primary-color);
    font-size: 20px;
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .faq-grid, .store-grid, .contact-layout {
        grid-template-columns: 1fr;
    }
    .store-map-card {
        min-height: 300px;
    }
}

/* =========================================
   SPECIAL OFFERS MARQUEE
   ========================================= */
.special-offers-section {
    border: 2px solid #ff4d4d;
    border-radius: var(--border-radius);
    margin: 40px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.15);
}
.offers-header {
    background: #ff4d4d;
    color: white;
    padding: 15px 20px;
    text-align: center;
}
.offers-header h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}
.offers-marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: #fffcfc;
}
.offers-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding-left: 20px;
    animation: scrollMarquee 50s linear infinite;
}
.offers-marquee-track:hover {
    animation-play-state: paused;
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); } /* Scrolls exactly half its width accounting for gap */
}
.offer-card {
    width: 200px;
    flex-shrink: 0;
    border: 1px solid #ffe6e6;
    border-radius: var(--border-radius);
    padding: 15px;
    position: relative;
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 77, 77, 0.2);
    border-color: #ff4d4d;
}
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff0000;
    color: white;
    font-weight: 800;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(255,0,0,0.3);
    animation: bounceBadge 2s infinite;
}
@keyframes bounceBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
.offer-img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}
.offer-title {
    font-size: 13px;
    font-weight: 700;
    height: 36px;
    overflow: hidden;
    margin-bottom: 5px;
    color: #333;
}
.offer-price-container {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}
.offer-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
}
.offer-price-new {
    color: #ff0000;
    font-size: 18px;
    font-weight: 800;
}
.offer-btn {
    width: 100%;
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.offer-btn:hover {
    background: #cc0000;
}

/* =========================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 992px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .farm-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .shop-layout {
        flex-direction: column;
    }
    .shop-sidebar {
        width: 100%;
        margin-bottom: 20px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image-img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    /* Header Adjustments */
    .header-top-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    .search-bar {
        order: 3; /* Move search bar to next line */
        width: 100%;
    }
    .header-actions {
        gap: 10px;
    }
    .action-item span {
        display: none; /* Hide text, show only icons on mobile */
    }
    .categories-dropdown {
        min-width: auto;
        padding: 10px 15px;
    }
    .categories-dropdown span {
        display: none;
    }
    .logo-container h2 {
        font-size: 24px;
    }
    
    /* Bottom Nav Horizontal Scroll */
    .bottom-nav {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }
    .bottom-nav::-webkit-scrollbar {
        height: 4px;
    }
    .bottom-nav::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.3);
        border-radius: 4px;
    }
    
    /* Promo Grid */
    .promo-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .card-large {
        grid-column: span 1;
    }
    .card-medium, .card-small {
        grid-column: span 1;
    }
    .promo-img-right {
        right: -10px;
        bottom: -10px;
    }
    
    /* Farm Grid */
    .farm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Wide Banner */
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .banner-text-left h2 {
        font-size: 24px;
    }
    .banner-center .pick-it, .banner-center .drop-it {
        font-size: 32px;
    }
    .banner-image-right {
        display: none; /* Hide large cart icon on mobile */
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .newsletter {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .subscribe-form {
        width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .farm-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product-card {
        padding: 10px;
    }
    .product-image {
        height: 100px;
    }
    .product-title {
        font-size: 12px;
        height: 32px;
    }
    .product-price {
        font-size: 14px;
    }
    .add-to-cart-btn {
        width: 28px;
        height: 28px;
    }
}
