.shop-banner {
    background: linear-gradient(135deg, #598006 0%, #7fba00 100%);
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    color: white;
}

.shop-banner-content {
    text-align: center;
    z-index: 1;
}

.shop-banner h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.shop-banner h4 {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Category Navigation */
.category-nav {
    background: #f8f9fa;
    padding: 20px 0;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #dee2e6;
    padding: 15px 30px;
    border-radius: 50px;
    color: #495057;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-color: #7fba00;
    color:#7fba00;
}

.category-btn.active {
    background: linear-gradient(135deg, #598006 0%, #7fba00  100%);
    color: white;
    border-color: #7fba00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Product Grid */
.category-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.category-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #f8f9fa;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(127, 186, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    color: #7fba00;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: #7fba00;
    color: white;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.product-description {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5em;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #598006 0%, #7fba00 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(127, 186, 0, 0.4);
}

.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Mobile Navigation Styles */
.mobile-menu-check {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: #7fba00;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.mobile-menu-toggle:hover {
    background: #598006;
    transform: translateY(-50%) scale(1.1);
}

.mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-menu-check:checked + .mobile-menu-toggle i {
    transform: rotate(90deg);
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .primary-navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 10px 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .mobile-menu-check:checked ~ .primary-navbar {
        max-height: 300px;
        opacity: 1;
        padding: 20px 0;
    }
    
    .primary-navbar li {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    
    .primary-navbar li a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
        color: #333;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .primary-navbar li a:hover,
    .primary-navbar li.active a {
        background: #7fba00;
        color: white;
        transform: translateX(10px);
    }
    
    .primary-navbar li:last-child a {
        border-bottom: none;
    }
    
    #primary-navigation {
        position: relative;
    }
    
    .main-header .container-fluid .row {
        position: relative;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .shop-banner h1 { font-size: 2em; }
    .category-buttons { gap: 10px; }
    .category-btn { padding: 10px 20px; font-size: 0.9em; }
    .product-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
    
    .main-logo span {
        font-size: 0.8em;
        line-height: 1.2;
    }
    
    .cart-hover {
        margin-top: 10px;
    }
}
