@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Public+Sans:wght@300;400;600;700&display=swap');

/* Modern Sleek Theme */
.theme-modern {
    --theme-border-radius: 20px;
    --theme-card-shadow: 0 10px 40px rgba(0,0,0,0.06);
    --theme-font-family: 'Public Sans', sans-serif;
}
.theme-modern .home-section-2 {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding-bottom: 50px;
}
.theme-modern .product-box-4 {
    border-radius: var(--theme-border-radius);
    box-shadow: var(--theme-card-shadow);
    background: #fff !important;
    border: 1px solid #f1f1f1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-modern .product-box-4:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

/* Classic Retail Theme */
.theme-classic {
    --theme-border-radius: 4px;
    --theme-card-shadow: none;
    --theme-font-family: 'Public Sans', Arial, sans-serif;
}
.theme-classic .product-box-4 {
    border-radius: var(--theme-border-radius);
    border: 1px solid #ececec;
    box-shadow: var(--theme-card-shadow);
    background: #fff !important;
}

/* Elegant Luxury Theme (New Bootstrap Design) */
.theme-elegant {
    --theme-font-family: 'Manrope', sans-serif;
}
.theme-elegant h1, .theme-elegant h2, .theme-elegant h3, .theme-elegant .title h2 {
    font-family: 'Manrope', sans-serif !important;
}
.theme-elegant .product-box-4 {
    border-radius: var(--theme-border-radius);
    background: #fff !important;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.theme-elegant .product-box-4:hover {
    box-shadow: var(--theme-card-shadow);
}

/* Product Block Designs */

/* Modern Minimal Design */
.product-design-modern .product-header {
    position: relative;
    overflow: hidden;
}
.product-design-modern .label-flex {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}
.product-design-modern:hover .label-flex {
    opacity: 1;
    transform: translateX(0);
}
.product-design-modern .price-qty {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.product-design-modern:hover .price-qty {
    opacity: 1;
    transform: translateY(0);
}

/* Classic Dense Design */
.product-design-classic .product-detail {
    padding: 10px;
}
.product-design-classic .name {
    font-size: 14px;
    height: 3em;
    overflow: hidden;
}
.product-design-classic .price {
    font-size: 18px;
    font-weight: 700;
}
.product-design-classic .add-to-cart-btn {
    width: 100%;
    border-radius: 4px;
    margin-top: 10px;
}
