/* Shop Page Specific Styles */

:root {
    --primary-color: #8e44ad;
    --shop-bg: #f8f9fa;
    --offer-bg: #4a235a;
    --danger-price: #ef4056;
}

.shop-page {
    background: var(--shop-bg);
}

/* Banner Slider */
.shop-banner-item {
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to left, transparent, rgba(0, 0, 0, 0.6));
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #333;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.banner-content h2 {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #000;
}

.banner-content p {
    font-weight: 600;
    color: #444;
}

/* Category Circles */
.category-circle-item {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    width: 100px;
}

.cat-img {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cat-img img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.cat-img i {
    font-size: 1.5rem;
    color: #aaa;
}

.category-circle-item:hover .cat-img {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(142, 68, 173, 0.15) !important;
}

.category-circle-item span {
    font-size: 0.85rem;
    font-weight: bold;
}

/* Incredible Offers */
.purple-gradient-bg {
    background: linear-gradient(135deg, #4a235a 0%, #8e44ad 100%);
}

.time-box {
    background: #fff;
    color: #333;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
}

.offer-product-card {
    position: relative;
    transition: transform 0.3s;
}

.offer-product-card:hover {
    transform: scale(1.02);
}

.product-badge-dis {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--danger-price);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 50px;
}

.offer-img {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-img img {
    max-height: 100%;
    object-fit: contain;
}

.new-price {
    font-size: 1.1rem;
    color: var(--danger-price) !important;
}

/* Product Grid Cards */
.shop-product-card {
    border: 1px solid #eee;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shop-product-card:hover {
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-5px);
}

.prod-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 5;
}

.shop-product-card:hover .prod-actions {
    opacity: 1;
    transform: translateX(0);
}

.prod-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.prod-img img {
    transition: transform 0.5s ease;
}

.shop-product-card:hover .prod-img img {
    transform: scale(1.1);
}

.add-to-cart-btn {
    opacity: 0.9;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    opacity: 1;
    transform: scale(1.02);
}

/* Bento Banners */
.bento-item {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
    background-size: cover !important;
}

.bento-item:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .shop-banner-item {
        height: 300px;
        padding: 0 25px;
    }

    .banner-content h2 {
        font-size: 1.8rem;
    }

    .category-circle-item {
        width: 80px;
    }

    .cat-img {
        width: 65px;
        height: 65px;
    }

    .prod-img {
        height: 140px;
    }
}

@media (max-width: 576px) {
    .incredible-offers {
        padding-top: 20px !important;
    }

    .offers-wrapper {
        border-radius: 20px;
    }
}