/* Main Shop Container */
.shop-container {
    width: 80%;
    margin: 30px auto;
    text-align: center;
}

.shop-container h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

/* Category List Styling */
.category-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.category-item {
    margin: 15px;
    flex: 1 1 calc(33.33% - 30px); /* 3 items per row with spacing */
    max-width: calc(33.33% - 30px);
    box-sizing: border-box;
    text-align: center;
}

/* Zoom Effect for Images */
.category-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out; /* Smooth transition for zoom effect */
}

.category-item img:hover {
    transform: scale(1.1); /* Zoom-in effect */
}

.category-item p {
    margin-top: 10px;
    font-weight: bold;
}

/* Category Detail Container */
.category-detail-container {
    width: 80%;
    margin: 30px auto;
    text-align: center;
}

.category-detail-container h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.category-thumbnail img {
    width: 50%;
    height: auto;
    border-radius: 8px;
}

/* Product List Styling */
.product-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.product-item {
    margin: 15px;
    flex: 1 1 calc(33.33% - 30px); /* 3 items per row with spacing */
    max-width: calc(33.33% - 30px);
    box-sizing: border-box;
    text-align: center;
}

/* Zoom Effect for Product Images */
.product-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out; /* Smooth transition for zoom effect */
}

.product-item img:hover {
    transform: scale(1.1); /* Zoom-in effect */
}

.product-item p {
    margin-top: 10px;
    font-weight: bold;
}

.product-item a {
    display: inline-block;
    margin-top: 10px;
    background-color: #8d0000;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
}

.product-item a:hover {
    background-color: #6b0000;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .category-item, .product-item {
        flex: 1 1 calc(50% - 30px); /* 2 items per row with spacing */
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 480px) {
    .category-item, .product-item {
        flex: 1 1 100%; /* 1 item per row for very small screens */
        max-width: 100%;
    }
}

/* Gallery and Swiper Image Zoom Effect */
.swiper-slide img, .gallery img {
    transition: transform 0.3s ease-in-out; /* Smooth transition for zoom effect */
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.swiper-slide img:hover, .gallery img:hover {
    transform: scale(1.1); /* Zoom-in effect */
}
