/* Wallpaper Shop Styles */
.wallpaper-shop .woocommerce-breadcrumb {
    display: none;
}



/* Hero Section */
.wallpaper-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 55px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.wallpaper-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.wallpaper-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 700;
}

.wallpaper-hero p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}


/* Products Section */
.wallpaper-products {
    padding: 0 20px 60px;
}

.wallpaper-section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1e293b;
    font-weight: 700;
}

.wallpaper-shop ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 0;
}

.wallpaper-shop ul.products li.product {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
    padding: 0;
    width: 100%;
    margin: 0;
}

.wallpaper-shop ul.products li.product:hover {
    transform: translateY(-5px);
}

.wallpaper-shop .woocommerce-loop-product__title {
    font-size: 1.2rem;
    padding: 15px 20px 5px;
    color: #1e293b;
    font-weight: 600;
}

.wallpaper-shop .price {
    padding: 0 20px;
    color: #4b4e54;
    font-weight: 300;
}

.wallpaper-shop .price .amount {
    font-size: 1.2rem;
}

.wallpaper-shop .button.add_to_cart_button {
    background-color: black;
    color: white;
    border-radius: 0 0 8px 8px;
    padding: 12px;
    text-align: center;
    display: block;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.wallpaper-shop .button.add_to_cart_button:hover {
    background-color: #1d4ed8;
}

/* Bundle Section */
.wallpaper-bundle {
    background-color: #f1f5f9;
    padding: 80px 20px;
    text-align: center;
}

.wallpaper-bundle-content {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.wallpaper-bundle h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2563eb;
}

.bundle-price {
    margin-bottom: 15px;
}

.sale-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-right: 15px;
}

.regular-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #64748b;
}

.bundle-savings {
    color: #ef4444;
    font-weight: 600;
    margin-bottom: 25px;
}

.bundle-includes {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 20px;
}

.bundle-includes li {
    margin-bottom: 10px;
    color: #64748b;
}

.wallpaper-bundle .cart {
    margin-bottom: 0;
}

.wallpaper-bundle .single_add_to_cart_button {
    background-color: #2563eb;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.wallpaper-bundle .single_add_to_cart_button:hover {
    background-color: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wallpaper-hero {
        padding: 60px 15px;
    }
    
    .wallpaper-hero h1 {
        font-size: 2rem;
    }
    
    .wallpaper-shop ul.products {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .wallpaper-bundle-content {
        padding: 30px 20px;
    }
}