:root {
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --accent: #FFC107;
    --text-primary: #333333;
    --text-secondary: #666666;
    --bg-light: #F1F8E9;
    --bg-white: #FFFFFF;
    --danger: #d32f2f;
    --success: #388e3c;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: #fcfcfc;
    scroll-behavior: smooth;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.btn-block {
    display: flex;
    width: 100%;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

.section-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-outline-secondary {
    border: 2px solid var(--text-secondary);
    color: var(--text-secondary);
    background: transparent;
}
.btn-outline-secondary:hover {
    background: var(--text-secondary);
    color: #fff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    border: 1px solid #eee;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-text {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    border: none;
}

.cookie-accept {
    background: var(--primary);
    color: #fff;
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-decline {
    background: #f5f5f5;
    color: #666;
}

.cookie-decline:hover {
    background: #eee;
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 10px;
        padding: 15px;
    }
    .cookie-buttons {
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
    }
}

/* Quick View Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quick-view-modal {
    background: #fff;
    width: 90%;
    max-width: 900px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .quick-view-modal {
    transform: translateY(0);
}

.quick-view-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
    color: #666;
}

.quick-view-close:hover {
    background: var(--danger);
    color: #fff;
    transform: rotate(90deg);
}

.quick-view-image {
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.quick-view-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.quick-view-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.quick-view-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.quick-view-price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.quick-view-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.quick-view-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 200px;
}

.quick-view-actions {
    margin-top: auto;
}

@media (max-width: 768px) {
    .quick-view-modal {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .quick-view-image {
        padding: 20px;
        height: 250px;
    }
    
    .quick-view-image img {
        max-height: 200px;
    }
    
    .quick-view-content {
        padding: 20px;
    }
}

/* Glassmorphism Card Fix */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 10px;
}

/* Logo Safety */
.logo img {
    max-height: 50px;
    width: auto;
}

/* Mega Navigation */
.mega-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    height: 70px;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    height: 100%;
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: rgba(46, 125, 50, 0.05);
}

.nav-caret {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s;
}

.has-mega:hover .nav-caret { transform: rotate(180deg); }

/* Mega Menu Dropdown */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.mega-column-accent {
    background: var(--bg-light);
    margin: -40px -40px -40px 0;
    padding: 40px;
}

.mega-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.mega-title {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.mega-copy {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.mega-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-link {
    color: var(--text-primary);
    font-size: 0.95rem;
    position: relative;
    width: fit-content;
}

.mega-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s;
}

.mega-link:hover { color: var(--primary); }
.mega-link:hover::after { width: 100%; }

.mega-cta {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
}
.mega-cta:hover { background: var(--primary-dark); }

/* Mobile Menu */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background: var(--text-primary); transition: 0.3s; }

/* Hero Section (Nursery) */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    margin-top: -70px;
    padding-top: 70px;
}

.hero-bg {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/admin/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Features Grid */
.features {
    padding: 80px 0;
    background: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.feature-card img {
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(27, 94, 32, 0.9)), url('images/admin/shop.jpeg');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #f1f8e9;
}

/* Ratings Section */
.ratings-section {
    background: var(--bg-light);
    padding: 80px 0;
    margin-bottom: 0;
    text-align: center;
}

.ratings-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.add-review, .view-reviews {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
}

.add-review {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

.add-review:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.3);
}

.view-reviews {
    background: #fff;
    color: var(--text-primary);
    border: 1px solid #ddd;
}

.view-reviews:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #f9f9f9;
}

.ratings-keywords {
    margin: 20px auto;
    max-width: 800px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Product Grid */
.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    gap: 20px; 
    padding: 20px 0; 
}

.product-short-desc {
    font-size: 0.85rem;
    color: #666;
    margin: 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Minimal Product Card */
.product-card { 
    background: #fff; 
    border-radius: 16px; 
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.08); 
    display: flex; 
    flex-direction: column; 
    position: relative;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    content-visibility: auto;
    contain-intrinsic-size: 360px 480px;
}

.product-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.12); 
    border-color: var(--primary-light);
}

/* Image Box - Updated to match shop.js class */
.product-image-box { 
    position: relative; 
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio to reduce height */
    background: #f8f9fa;
    overflow: hidden;
}

.product-image { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keep contain for plants/products */
    padding: 8px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    mix-blend-mode: multiply;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

/* Badges */
.badges-container {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 5;
}

.badge {
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: fit-content;
}

.badge-sale { background: #ff4757; color: white; }
.badge-new { background: #2ed573; color: white; }
.badge-stock { background: #e8f5e9; color: #2e7d32; }

.out-of-stock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    backdrop-filter: blur(4px);
    font-size: 0.9rem;
}

/* Quick View Button */
.quick-view-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 2;
    font-size: 1rem;
}

.quick-view-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) translateX(0);
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateX(0);
}

/* Info Section */
.product-info { 
    padding: 12px 16px; 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1;
    text-align: center; /* Minimal centered look */
}

.product-category { 
    font-size: 0.65rem; 
    color: #999; 
    text-transform: uppercase; 
    font-weight: 700; 
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.product-title { 
    font-size: 1rem; 
    font-weight: 600; 
    color: var(--text-primary); 
    margin-bottom: 8px; 
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Price */
.product-price { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 10px; 
    margin-bottom: 16px;
}

.original-price { 
    font-size: 0.85rem; 
    color: #bbb; 
    text-decoration: line-through; 
}

.final-price { 
    font-size: 1.1rem; 
    font-weight: 700; 
    color: var(--text-primary); 
}

/* Actions */
.product-actions {
    margin-top: auto;
}

.product-card.no-image .product-image-box {
    display: block;
}
.product-card.no-image .product-info {
    padding: 12px 14px;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(46,125,50,0.25);
}
.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(46,125,50,0.3);
}
.add-to-cart-btn:active {
    transform: translateY(0);
}

.btn-add-cart { 
    width: 100%; 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); 
    color: #fff; 
    border: none; 
    padding: 12px 16px; 
    border-radius: 999px; 
    font-weight: 700; 
    font-size: 0.95rem; 
    cursor: pointer; 
    transition: all 0.25s ease; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(46,125,50,0.25);
}

.btn-add-cart:hover:not(:disabled) { 
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(46,125,50,0.3);
}

.btn-add-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Legacy support cleanup (can be removed if unused) */
.product-image-container, .add-to-cart { display: none; }

/* Image Navigation */
.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 14px;
    color: var(--text-primary);
}
.product-image-container:hover .image-nav { opacity: 1; }
.image-nav.prev { left: 5px; }
.image-nav.next { right: 5px; }
.image-nav:hover { background: #fff; color: var(--primary); }

/* Feature Badges */
.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 6px;
}
.feature-badge {
    font-size: 0.65rem;
    padding: 2px 4px;
    border-radius: 3px;
    background: #f0f0f0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 3px;
}
.badge-heat { background: #fff3e0; color: #e65100; }
.badge-lowmaint { background: #e8f5e9; color: #2e7d32; }
.badge-pet { background: #e1f5fe; color: #0277bd; }

/* Shop Banner Carousel */
.shop-banner {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    height: 300px;
    border-radius: 12px;
    background-color: #f5f5f5;
}

.shop-banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shop-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.shop-banner-img.active {
    opacity: 1;
    z-index: 2;
}

.banner-cta {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.banner-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.banner-prev, .banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--primary-dark);
}

.banner-prev:hover, .banner-next:hover {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.banner-prev { left: 20px; }
.banner-next { right: 20px; }

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Checkout & Cart Styles */
.btn-danger {
    background: var(--danger);
    color: #fff;
    border: none;
}
.btn-danger:hover {
    background: #b71c1c;
    box-shadow: var(--shadow-md);
}

.warning-note {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 6px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
    background: #ffebee;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ffcdd2;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.checkout-form, .order-summary-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.checkout-summary-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px dashed #ddd;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.payment-options-box {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.payment-option-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    width: 100%;
    color: var(--primary-dark);
}

.delivery-info-box {
    margin-top: 20px;
    padding: 15px;
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #0d47a1;
}

.delivery-info-note {
    font-size: 0.8rem;
    margin-top: 8px;
    font-style: italic;
    opacity: 0.8;
}

.order-validation-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 15px;
    line-height: 1.5;
    text-align: center;
    background: #fff8e1;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ffecb3;
}

/* Coupon Styles */
.coupon-input-group {
    display: flex;
    gap: 8px;
}

.coupon-input-group input {
    flex: 1;
}

@media (max-width: 768px) {
    .shop-banner { height: 300px; }
    .banner-cta { padding: 10px 20px; bottom: 30px; left: 20px; font-size: 0.9rem; }
    .banner-prev, .banner-next { width: 32px; height: 32px; }

    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-form, .order-summary-box {
        padding: 20px;
    }
}

.shop-page .page-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--primary-dark);
}

.search-bar {
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--bg-light);
    border-radius: 30px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-options {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.fuzzy-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
    padding: 0 10px;
}

.tab-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #fff;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.tab-btn:hover {
    background: #f5f5f5;
    color: var(--primary);
    border-color: #c8e6c9;
    transform: translateY(-1px);
}

.tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 2px 4px rgba(46, 125, 50, 0.2);
}

/* Ensure emoji/icons in buttons have some spacing if needed */
.tab-btn i {
    font-size: 0.9em;
}

.shop-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.shop-controls .btn-secondary {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.shop-controls .btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

#applyFiltersBtn {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

#applyFiltersBtn:hover {
    background: var(--primary-dark);
}

.filter-select, .price-input, #sortSelect {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
}

.filter-checkbox-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Cart Page */
.cart-page { background: #f9f9f9; }
.cart-container { padding-top: 40px; padding-bottom: 60px; min-height: 60vh; }

.cart-header {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 20px;
    padding: 15px 20px;
    background: #e8f5e9;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    border: 1px solid #c8e6c9;
}

.cart-item-row {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border: 1px solid #f0f0f0;
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-item-row .cart-item-image-box {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.cart-item-row .cart-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-row .cart-item-info h4 {
    margin: 0 0 5px 0;
    color: var(--text-primary);
}

.cart-item-row .cart-item-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cart-header {
        display: none;
    }
    
    .cart-item-row {
        grid-template-columns: 80px 1fr;
        grid-template-areas: 
            "image info"
            "controls total"
            "remove remove";
        gap: 15px;
        padding: 15px;
    }
    
    .cart-item-row .cart-item-image-box {
        grid-area: image;
    }
    
    .cart-item-row .cart-item-info {
        grid-area: info;
    }
    
    .cart-item-row .cart-item-controls {
        grid-area: controls;
    }
    
    .cart-item-row .cart-item-total {
        grid-area: total;
        text-align: right;
    }
    
    .cart-item-row .remove-btn {
        grid-area: remove;
        width: 100%;
        border-radius: 6px;
        background: #ffebee;
        color: var(--danger);
        justify-content: center;
    }
}

/* Cart Icon Badge */
.nav-cart { position: relative; }
.cart-trigger { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative;
    padding: 8px;
}
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Loading Skeleton & Shimmer Effect */
.skeleton-card {
    pointer-events: none;
    border-color: #eee !important;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    border-radius: 12px 12px 0 0;
}

.skeleton-text {
    height: 12px;
    background: #f0f0f0;
    margin-bottom: 10px;
    border-radius: 4px;
}

.skeleton-category { width: 40%; }
.skeleton-title { width: 80%; height: 18px; }
.skeleton-desc { width: 95%; height: 30px; }
.skeleton-price { width: 30%; height: 20px; }
.skeleton-button {
    height: 40px;
    background: #f0f0f0;
    border-radius: 8px;
    width: 100%;
    margin-top: 10px;
}

.shimmer {
    position: relative;
    overflow: hidden;
    background-color: #f6f7f8;
}

.shimmer::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0)
    );
    animation: shimmer 2s infinite;
    content: '';
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Unified Modern Cart UI */
.empty-cart-v2 {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 30px;
}

.empty-cart-illustration {
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.empty-cart-v2 h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.empty-cart-v2 p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cart-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 20px 0 15px;
    padding-left: 5px;
    border-left: 4px solid var(--primary);
}

.cart-recommendations-v2 {
    display: grid;
    gap: 15px;
}

.cart-rec-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 12px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.cart-rec-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-light);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.1);
}

.cart-rec-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    background: #f8f9fa;
}

.cart-rec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-rec-info {
    flex: 1;
}

.cart-rec-info h5 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.cart-rec-info .price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.cart-rec-add {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-rec-item:hover .cart-rec-add {
    transform: scale(1.1);
    background: var(--primary-dark);
}

/* Cart Items List v2 */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item-v2 {
    display: flex;
    background: #fff;
    padding: 15px;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.cart-item-v2:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: #e0e0e0;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 15px;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.cart-item-price {
    margin: 4px 0 10px;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 4px;
    border: 1px solid #eee;
}

.quantity-selector button {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: none;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.quantity-selector button:hover {
    background: var(--primary);
    color: #fff;
}

.quantity-selector span {
    margin: 0 12px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: #fff5f5;
    color: #ff4d4f;
    border: 1px solid #ffccc7;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-item-remove:hover {
    background: #ff4d4f;
    color: #fff;
    border-color: #ff4d4f;
}

#cartSliderTotal {
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.cart-slider-footer .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 15px;
    margin-top: 10px;
}

@media (max-width: 480px) {
    #cartSlider {
        max-width: 100%;
        right: -100%;
    }
    #cartSlider.active {
        transform: translateX(-100%);
    }
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    border: 2px solid #fff;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}
.cart-count:not(:empty):not([style*="display: none"]) {
    transform: scale(1);
    display: flex !important;
}

/* Mobile Cart Badge Override */
.nursery-tab .cart-count {
    top: 2px;
    right: 5px;
    min-width: 16px;
    height: 16px;
    font-size: 0.6rem;
    border-width: 1px;
}

/* Slidebar Cart */
#cartOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}
#cartOverlay.active { opacity: 1; visibility: visible; }

#cartSlider {
    position: fixed;
    top: 0;
    right: -400px; /* Start off-screen */
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
#cartSlider.active { transform: translateX(-400px); }

.cart-slider-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
.cart-slider-header h3 { margin: 0; font-size: 1.2rem; color: var(--primary-dark); }
.close-cart {
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.close-cart:hover {
    background: var(--danger);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}
.close-cart:active {
    transform: rotate(90deg) scale(0.95);
}

.cart-slider-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-slider-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background: #f9f9f9;
}
.cart-slider-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* Cart Items (Shared Styles for Page & Slider) */
.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    align-items: center;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    gap: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.cart-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
}

/* Slider Specific Overrides */
#cartSlider .cart-item {
    grid-template-columns: 60px 1fr;
    grid-template-areas: 
        "image info"
        "controls controls"
        "remove remove";
    gap: 10px;
    padding: 12px;
}

#cartSlider .cart-item-image-box {
    grid-area: image;
    width: 60px;
    height: 60px;
}

#cartSlider .cart-item-info {
    grid-area: info;
}

#cartSlider .cart-item-controls {
    grid-area: controls;
    width: 100%;
    justify-content: space-between;
    padding: 4px 8px;
}

#cartSlider .cart-item-total {
    display: none;
}

#cartSlider .remove-btn {
    grid-area: remove;
    width: 100%;
    border-radius: 6px;
    height: 32px;
    font-size: 0.85rem;
    gap: 6px;
    justify-content: center;
    background: #fff;
    border: 1px solid #ffebee;
}

#cartSlider .remove-btn::after {
    content: "Remove";
}

#cartSlider .remove-btn:hover {
    background: var(--danger);
    color: #fff;
    transform: none;
}

.cart-item-image-box {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-icon {
    font-size: 2rem;
    color: var(--primary);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

.cart-item-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cart-item-price-unit {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 25px;
    border: 1px solid #eee;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    line-height: 1;
}

.quantity-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.15);
}

.quantity-btn:active {
    transform: translateY(0);
}

.quantity-display {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    font-size: 1rem;
}

.cart-item-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
    min-width: 80px;
    text-align: right;
}

.remove-btn {
    background: #ffebee;
    border: none;
    color: var(--danger);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.remove-btn:hover {
    background: var(--danger);
    color: #fff;
    transform: rotate(90deg);
}

/* Best Sellers & Upsell Grid Overrides */
#bestSellersGrid .product-card,
#upsellGrid .product-card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    padding: 12px;
    height: auto;
}

#bestSellersGrid .product-info h3,
#upsellGrid .product-info h4 {
    font-size: 0.9rem;
    margin-bottom: 6px;
    height: 38px;
    overflow: hidden;
    line-height: 1.3;
}

#bestSellersGrid .price,
#upsellGrid .price {
    font-size: 1rem;
}

#bestSellersGrid .product-info {
    padding: 10px 12px;
}

#upsellGrid .upsell-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.add-to-cart-mini {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 1rem;
}

.add-to-cart-mini:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.add-to-cart-mini::after {
    content: '+';
    font-weight: bold;
}

/* Coupon Section Styling */
.coupon-section {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-top: 30px;
    border: 1px solid #f0f0f0;
}

.coupon-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.coupon-row {
    display: flex;
    gap: 12px;
    max-width: 500px;
}

.coupon-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.coupon-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.coupon-btn {
    padding: 0 24px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-btn:hover {
    background: var(--primary-dark);
}

.coupon-btn.btn-danger {
    background: var(--danger);
}

.coupon-btn.btn-danger:hover {
    background: #c62828;
}

/* Cart Summary Styling */
.cart-summary {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.summary-row.total {
    border-top: 2px dashed #eee;
    padding-top: 16px;
    margin-top: 16px;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.summary-row.total span:last-child {
    color: var(--primary-dark);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 1fr auto;
        grid-template-areas: 
            "image info"
            "controls total"
            "remove remove";
        gap: 12px;
    }

    .cart-item-image-box {
        grid-area: image;
        width: 70px;
        height: 70px;
    }

    .cart-item-info {
        grid-area: info;
    }

    .cart-item-controls {
        grid-area: controls;
        width: fit-content;
    }

    .cart-item-total {
        grid-area: total;
        text-align: right;
    }

    .remove-btn {
        grid-area: remove;
        width: 100%;
        border-radius: 8px;
        height: 40px;
        justify-content: center;
        gap: 8px;
        background: #fff;
        border: 1px solid #ffebee;
    }
    
    .remove-btn::after {
        content: "Remove Item";
        font-weight: 500;
    }

    .coupon-row {
        flex-direction: column;
    }
    
    .coupon-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
}
/* Redundant styles removed - using the detailed block above */

.upsell-section { margin-top: 50px; margin-bottom: 40px; }
.upsell-title { font-size: 1.4rem; margin-bottom: 20px; color: var(--primary-dark); border-bottom: 2px solid #e0e0e0; padding-bottom: 10px; display: inline-block; }

/* Mobile Adjustments for Slidebar */
@media(max-width: 768px) {
    #cartSlider.active { transform: translateX(0); right: 0; }
    #cartSlider { right: -100%; width: 100%; max-width: 100%; transform: none; transition: right 0.3s ease; }
    .cart-summary { position: static; margin-top: 30px; }
    .coupon-row { flex-direction: column; }
    .coupon-btn { width: 100%; }
}

/* Checkout Page */
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 0; }
.checkout-form { background: #fff; padding: 30px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 6px; font-family: inherit; }
.form-group input:focus { border-color: var(--primary); outline: none; }
.order-summary-box { background: var(--bg-light); padding: 30px; border-radius: 12px; height: fit-content; }

/* Contact Page Styles */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/admin/shop.jpeg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.header-content h1 { font-size: 3rem; margin-bottom: 10px; }
.header-content p { font-size: 1.2rem; opacity: 0.9; }

.contact-header { text-align: center; max-width: 800px; margin: 0 auto 50px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.contact-info-column { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 { margin-bottom: 10px; color: var(--primary-dark); }
.contact-details p { margin-bottom: 5px; color: var(--text-secondary); font-size: 0.95rem; }

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}
.contact-form-wrapper h3 { margin-bottom: 30px; color: var(--primary-dark); }

.map-section { margin-bottom: 50px; }
.map-wrapper { height: 400px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Sustainability Section */
.sustainability {
    padding: 80px 0;
    background: #f9f9f9;
    overflow: hidden;
}

.sustainability-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .sustainability-content {
        grid-template-columns: 1fr 1fr;
    }
}

.sustainability-text {
    opacity: 1; 
    transform: none;
}
.sustainability-text.reveal {
    opacity: 0;
    transform: translateY(30px);
}
.sustainability-text.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.sustainability-text h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.sustainability-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.sustainability-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.sustainability-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.sustainability-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    background: #e8f5e9;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.sustainability-image-carousel {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sustainability-image-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.sustainability-image-carousel img.active {
    opacity: 1;
}

/* Mobile Bottom Navigation (Pill Design) */
.nursery-mobile-tabs {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: none; /* Hidden by default, shown in mobile media query */
    width: auto;
    max-width: 90%;
}

.nursery-mobile-tabs-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    padding: 5px;
    gap: 5px;
    border: 1px solid rgba(0,0,0,0.05);
}

.nursery-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 40px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
}

.nursery-tab-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nursery-tab span {
    font-size: 0.9rem;
    font-weight: 600;
    display: none; /* Hidden by default */
    opacity: 0;
    transform: translateX(-10px);
}

/* Active State */
.nursery-tab.nursery-tab--active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

.nursery-tab.nursery-tab--active .nursery-tab-icon {
    transform: scale(1.1);
}

.nursery-tab.nursery-tab--active span {
    display: inline-block;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Ripple Effect */
.nursery-tab:active {
    transform: scale(0.95);
}


/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p, .footer-section a {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul li { margin-bottom: 10px; }
.footer-section a:hover { color: var(--primary); }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    /* Show Mobile Nav */
    .nursery-mobile-tabs { display: flex; }
    .mega-nav { display: none; }
    
    /* Layout Adjustments */
    body { padding-bottom: 100px; } /* Increased space */
    .footer { padding-bottom: 110px; }
    
    .checkout-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    
    /* Hero */
    .hero h1 { font-size: 2rem; }
    .hero-section { min-height: auto; padding: 40px 0; }
    
    /* Product Grid - Force 2 columns */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }
    .product-card { margin-bottom: 10px; }
    .product-info { padding: 10px 12px; }
    .product-title { font-size: 0.95rem; margin-bottom: 6px; }
    .product-price { margin-bottom: 12px; }
    .final-price { font-size: 1.02rem; }
    .product-short-desc { font-size: 0.78rem; margin: 4px 0 6px; }
    .btn-add-cart { padding: 11px 14px; font-size: 0.92rem; }
    .product-image-box { padding-top: 70%; }
    .product-image { padding: 6px; }
    .product-image { mix-blend-mode: normal; }
    .product-card:hover { transform: none; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }

    /* Cart Adjustments */
    .cart-summary { margin: 20px 0; }
    .empty-cart { margin: 20px 0; padding: 40px 20px; }
    
    .cart-item-row {
        grid-template-columns: 70px 1fr;
        gap: 12px;
        padding: 12px;
    }
    
    /* Ratings */
    .ratings-buttons { flex-direction: column; align-items: stretch; }
    .add-review, .view-reviews { justify-content: center; }
    
    /* WhatsApp Widget Position */
    .whatsapp-widget { bottom: 100px; right: 20px; }
}

@media (max-width: 420px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 0 8px;
    }
    .product-card { border-radius: 14px; }
    .badge { font-size: 0.6rem; padding: 3px 8px; }
    .product-category { font-size: 0.6rem; margin-bottom: 4px; }
    .product-title { font-size: 0.92rem; }
    .final-price { font-size: 1rem; }
    .btn-add-cart { padding: 10px 12px; font-size: 0.9rem; }
    .quick-view-btn { opacity: 1; transform: translateX(0); }
}

@media (max-width: 340px) {
    .products-grid { grid-template-columns: 1fr; }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

.whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.whatsapp-message-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
}

.whatsapp-message-box.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-header {
    background: #075E54;
    color: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-profile {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #075E54;
    font-size: 20px;
}

.whatsapp-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.whatsapp-name { font-weight: 600; font-size: 16px; }
.whatsapp-status { font-size: 12px; opacity: 0.8; }

.close-whatsapp {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.whatsapp-body {
    padding: 20px;
    background: #e5ddd5;
    min-height: 100px;
}

.whatsapp-bubble {
    background: #fff;
    padding: 10px 15px;
    border-radius: 0 12px 12px 12px;
    font-size: 14px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    color: #333;
}

.whatsapp-time {
    display: block;
    text-align: right;
    font-size: 10px;
    color: #999;
    margin-top: 5px;
}

.whatsapp-footer {
    padding: 10px;
    background: #f0f0f0;
    text-align: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.whatsapp-btn:hover { background: #128C7E; color: #fff; }

@media (max-width: 768px) {
    .whatsapp-widget { bottom: 80px; right: 20px; }
}

/* =========================================

   COOKIE BANNER STYLES

   ========================================= */

.cookie-banner {

    position: fixed;

    bottom: 0;

    left: 0;

    width: 100%;

    background: #fff;

    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);

    z-index: 9999;

    padding: 20px;

    transform: translateY(100%);

    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    border-top: 1px solid #f0f0f0;

}



.cookie-banner.visible {

    transform: translateY(0);

}



.cookie-content {

    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    flex-wrap: wrap;

}



.cookie-text {

    font-size: 0.95rem;

    color: var(--text-secondary);

    line-height: 1.5;

    margin: 0;

    flex: 1;

    min-width: 280px;

}



.cookie-buttons {

    display: flex;

    gap: 12px;

}



.cookie-btn {

    padding: 10px 24px;

    border-radius: 6px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s;

    border: none;

    font-size: 0.9rem;

    white-space: nowrap;

}



.cookie-accept {

    background: var(--primary);

    color: white;

}

.cookie-accept:hover {

    background: var(--primary-dark);

    transform: translateY(-1px);

    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);

}



.cookie-decline {

    background: transparent;

    border: 1px solid #ddd;

    color: var(--text-secondary);

}

.cookie-decline:hover {

    background: #f5f5f5;

    border-color: #ccc;

    color: var(--text-primary);

}



@media (max-width: 600px) {

    .cookie-content {

        flex-direction: column;

        align-items: flex-start;

    }

    .cookie-buttons {

        width: 100%;

    }

    .cookie-btn {

        flex: 1;

        text-align: center;

    }

}



/* =========================================

   MOBILE NAVIGATION STYLES

   ========================================= */

@media (max-width: 992px) {

    /* Header Layout */

    .nav-inner {

        padding: 0 15px;

    }



    /* Hamburger Toggle */

    .hamburger {

        display: flex;

        z-index: 1002;

    }



    .hamburger.active span:nth-child(1) {

        transform: rotate(45deg) translate(5px, 6px);

    }

    .hamburger.active span:nth-child(2) {

        opacity: 0;

    }

    .hamburger.active span:nth-child(3) {

        transform: rotate(-45deg) translate(5px, -6px);

    }



    /* Main Menu Dropdown */

    .nav-menu {

        position: fixed;

        top: 70px;

        left: 0;

        width: 100%;

        height: calc(100vh - 70px);

        background: #fff;

        flex-direction: column;

        align-items: flex-start;

        padding: 20px 0;

        gap: 0;

        transform: translateX(100%);

        transition: transform 0.3s ease;

        overflow-y: auto;

        z-index: 1000;

        border-top: 1px solid #f0f0f0;

    }



    .nav-menu.active {

        transform: translateX(0);

    }



    /* Nav Items */

    .nav-item {

        width: 100%;

        height: auto;

        flex-direction: column;

        align-items: flex-start;

        border-bottom: 1px solid #f9f9f9;

    }



    .nav-link {

        width: 100%;

        padding: 15px 20px;

        justify-content: space-between;

        font-size: 1rem;

    }



    /* Mega Menu on Mobile */

    .mega-menu {

        position: static;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        border: none;

        max-height: 0;

        overflow: hidden;

        transition: max-height 0.3s ease;

        padding: 0;

        background: #f9f9f9;

    }



    .nav-item.active .mega-menu {

        max-height: 2000px; /* Large enough to fit content */

        border-bottom: 1px solid #eee;

    }



    .nav-item.active .nav-caret {

        transform: rotate(180deg);

    }



    .mega-grid {

        grid-template-columns: 1fr;

        padding: 20px;

        gap: 30px;

    }



    .mega-column-accent {

        margin: 0;

        padding: 20px;

        border-radius: 8px;

    }



    /* Hide Cart Icon in Menu (Use bottom tab or header icon instead) */

    .nav-cart {

        display: none;

    }

}


/* ==========================================
   ADDED FIXES: Loading Dots, WhatsApp, Mobile
   ========================================== */

/* Loading Dots */
.load-more-container {
    text-align: center;
    padding: 20px;
    width: 100%;
}
.loading-dots {
    display: inline-block;
}
.loading-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 3px;
    animation: bounce 1.4s infinite ease-in-out both;
}
.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* WhatsApp Widget Position & Styles */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

.whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.whatsapp-message-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
}

.whatsapp-message-box.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-header {
    background: #075E54;
    color: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-profile {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #075E54;
    font-size: 20px;
}

.whatsapp-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.whatsapp-name { font-weight: 600; font-size: 16px; }
.whatsapp-status { font-size: 12px; opacity: 0.8; }

.close-whatsapp {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.whatsapp-body {
    padding: 20px;
    background: #e5ddd5;
    min-height: 100px;
}

.whatsapp-bubble {
    background: #fff;
    padding: 10px 15px;
    border-radius: 0 12px 12px 12px;
    font-size: 14px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    color: #333;
}

.whatsapp-time {
    display: block;
    text-align: right;
    font-size: 10px;
    color: #999;
    margin-top: 5px;
}

.whatsapp-footer {
    padding: 10px;
    background: #f0f0f0;
    text-align: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.whatsapp-btn:hover { background: #128C7E; color: #fff; }

/* Mobile Overrides */
@media (max-width: 768px) {
    .whatsapp-widget { bottom: 100px; right: 20px; }
    
    body { padding-bottom: 100px; }
    .footer { padding-bottom: 110px; }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 10px !important;
    }
    
    .cart-item-row {
        grid-template-columns: 70px 1fr !important;
        gap: 12px !important;
        padding: 12px !important;
    }
    
    .hero h1 { font-size: 2rem; }
    .hero-section { min-height: auto; padding: 40px 0; }
}


/* Responsive Fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    .product-card {
        margin-bottom: 15px;
    }
    .shop-header {
        flex-direction: column;
        gap: 15px;
    }
    .shop-filters {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

/* Dark Mode Removed from global scope to prevent bleeding into Shop/Nursery */
