/* Category Navigation */
.category-nav {
    display: flex;
    gap: 8px;
    padding: 15px 20px;
    background-color: #f9f9f9;
    overflow-x: auto;
    border-bottom: 1px solid #eee;
    position: sticky;
    /* top: 160px; */
    z-index: 9;
}

.category-btn {
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    color: #666;
    font-size: 13px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover {
    border-color: #2d5016;
    color: #2d5016;
}

.category-btn.active {
    background-color: #2d5016;
    color: white;
    border-color: #2d5016;
}

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

.product-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.product-image {
    width: 100%;
    height: 120px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 12px;
}

.product-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
    line-height: 1.2;
}

.category-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
    text-transform: capitalize;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 4px;
}

.stock {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.btn-detail {
    width: 100%;
    padding: 8px;
    font-size: 13px;
    text-align: center;
    display: block;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }

    .product-image {
        height: 100px;
    }

    .product-info {
        padding: 10px;
    }

    .product-info h3 {
        font-size: 13px;
    }

    .price {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    .category-nav {
        gap: 6px;
        padding: 10px 15px;
    }

    .category-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}
