﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.gv tr {
    padding: 0;
    margin: 0;
    border-width:0px;
}

.gv td {
    padding: 0;
    margin: 0;
    border-width: 0px;
}
body {
    background: #f5f5f5;
}

/* Main Layout */
.shop-container {
    display: flex;
    gap: 20px;
    padding: 30px;
}

/* Sidebar */
.category-sidebar {
    width: 250px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

    .category-sidebar h3 {
        margin-bottom: 15px;
        font-size: 20px;
    }

    .category-sidebar ul {
        list-style: none;
    }

        .category-sidebar ul li {
            margin-bottom: 2px;
        }

            .category-sidebar ul li a {
                text-decoration: none;
                color: #333;
                transition: 0.3s;
            }

                .category-sidebar ul li a:hover {
                    color: #007bff;
                }

/* Product Section */
.product-section {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .product-card:hover {
        transform: translateY(-5px);
    }

/* Image Section */
.product-image {
    position: relative;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        display: block;
    }

/* Quick View Button */
.quick-view {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 15px;
    border: none;
    background: #007bff;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
}

.product-image:hover .quick-view {
    opacity: 1;
}

/* Product Info */
.product-info {
    padding: 15px;
    text-align: center;
}

    .product-info h4 {
        margin-bottom: 5px;
        font-size: 14px;
        font-weight:600;
    }

.price {
    color: #007bff;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
    .shop-container {
        flex-direction: column;
    }

    .category-sidebar {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .product-section {
        grid-template-columns: repeat(1, 1fr);
    }
}
