

/* Shop Page Container */
.woocommerce-shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Shop Title */
.shop-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

/* Category List */
.shop-category-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Category Item - List Style */
.shop-category-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #000;
    transition: transform 0.2s ease-in-out;
}

.shop-category-item:hover {
    transform: scale(1.02);
}

/* Category Image */
.category-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
}

/* Category Info */
.category-info {
    flex-grow: 1;
}

.category-title {
    font-size: 18px;
    font-weight: bold;
}

/* Discount Offer */
.category-discount {
    font-size: 14px;
    font-weight: bold;
    color: #008000;
}
@media (max-width: 768px) {
    .shop-category-item {
        flex-direction: row;
        align-items: center;
        padding: 12px;
    }

    .category-image {
        width: 50px;
        height: 50px;
    }

    .category-title {
        font-size: 16px;
    }

    .category-discount {
        font-size: 12px;
    }
}

a {
    text-decoration: none;
}


/* Product List View */
.woocommerce-product-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Product Item (List View) */
.product-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.product-item:hover {
    transform: scale(1.02);
}

/* Product Image */
.product-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

/* Product Info */
.product-info {
    flex-grow: 1;
}

.product-title {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

/* Price Styling */
.product-price {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* Add to Cart Button */
.add-to-cart-btn {
    background: #0099ff;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.add-to-cart-btn:hover {
    background: blue;
}

/* Sticky Cart Summary */
.cart-summary {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #10847E;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    z-index: 1000;
}

/* Initially Hidden */
.hidden {
    display: none;
}

/* View Cart Button */
.view-cart-btn {
    background: white;
    color: #10847E;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}