/* Premium Homepage CSS */

.home-hero{
    padding:34px 0 54px;
    background:
        radial-gradient(circle at top left, rgba(37,99,235,.12), transparent 34%),
        radial-gradient(circle at top right, rgba(14,165,233,.10), transparent 30%);
}

.hero-slide{
    min-height:560px;
    border-radius:34px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    background:
        linear-gradient(135deg,#ffffff 0%,#f8fbff 48%,#eff6ff 100%);
    border:1px solid rgba(226,232,240,.95);
    box-shadow:0 28px 80px rgba(15,23,42,.12);
    position:relative;
}

.hero-slide::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(37,99,235,.08);
    left:-90px;
    bottom:-90px;
}

.hero-content{
    padding:70px;
    position:relative;
    z-index:2;
}

.hero-eyebrow{
    display:inline-flex;
    padding:9px 15px;
    border-radius:999px;
    background:#eff6ff;
    color:#2563eb;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:58px;
    line-height:1.05;
    font-weight:950;
    letter-spacing:-.06em;
    color:#0f172a;
    margin-bottom:20px;
}

.hero-content p{
    max-width:620px;
    font-size:18px;
    line-height:1.8;
    color:#64748b;
    margin-bottom:30px;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.hero-actions .primary-btn,
.hero-actions .secondary-btn{
    min-height:50px;
    padding:14px 22px;
}

.hero-image{
    height:100%;
    min-height:560px;
    background:
        linear-gradient(180deg,#eef5ff,#f8fafc);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.hero-image::after{
    content:"";
    position:absolute;
    inset:36px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,.8);
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:relative;
    z-index:1;
}

.no-banner{
    grid-template-columns:1fr;
}

/* Category */

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.category-card{
    position:relative;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:28px 22px;
    text-align:center;
    overflow:hidden;
    transition:.25s ease;
    box-shadow:0 12px 32px rgba(15,23,42,.06);
}

.category-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(37,99,235,.10),transparent 55%);
    opacity:0;
    transition:.25s;
}

.category-card:hover{
    transform:translateY(-7px);
    box-shadow:0 24px 50px rgba(15,23,42,.13);
    border-color:#bfdbfe;
}

.category-card:hover::before{
    opacity:1;
}

.category-card img,
.category-icon{
    position:relative;
    z-index:1;
}

.category-card img{
    width:92px;
    height:92px;
    object-fit:contain;
    margin-bottom:18px;
}

.category-icon{
    width:92px;
    height:92px;
    margin:auto;
    margin-bottom:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    background:#eff6ff;
    border-radius:24px;
}

.category-card h3{
    position:relative;
    z-index:1;
    font-size:18px;
    font-weight:900;
    color:#0f172a;
    margin-bottom:8px;
}

.category-card span{
    position:relative;
    z-index:1;
    color:#2563eb;
    font-size:13px;
    font-weight:900;
}

/* Product Grid */

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
    align-items:stretch;
}

.product-card{
    position:relative;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:26px;
    overflow:hidden;
    transition:.25s ease;
    box-shadow:0 14px 34px rgba(15,23,42,.07);
    height:100%;
}

.product-card:hover{
    transform:translateY(-7px);
    box-shadow:0 26px 58px rgba(15,23,42,.14);
    border-color:#bfdbfe;
}

.product-badges{
    position:absolute;
    top:14px;
    left:14px;
    z-index:5;
    display:flex;
    gap:7px;
    flex-wrap:wrap;
}

.product-badge{
    padding:7px 11px;
    border-radius:999px;
    font-size:11px;
    font-weight:950;
    box-shadow:0 8px 18px rgba(15,23,42,.08);
}

.badge-new{
    background:#dcfce7;
    color:#166534;
}

.badge-featured{
    background:#eff6ff;
    color:#2563eb;
}

.product-actions{
    position:absolute;
    top:14px;
    right:14px;
    z-index:5;
    display:grid;
    gap:8px;
}

.product-icon-btn{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#fff;
    border:1px solid #e5e7eb;
    color:#0f172a;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 22px rgba(15,23,42,.10);
    transition:.2s;
}

.product-icon-btn:hover{
    background:#2563eb;
    color:#fff;
    transform:scale(1.06);
}

.product-img{
    height:250px;
    background:
        linear-gradient(180deg,#f8fafc 0%,#eef4ff 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    border-bottom:1px solid #eef2f7;
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:30px;
    transition:.25s ease;
}

.product-card:hover .product-img img{
    transform:scale(1.05);
}

.no-product-img{
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:#64748b;
}

.no-product-img span{
    font-size:62px;
    margin-bottom:8px;
}

.no-product-img p{
    font-weight:900;
    font-size:13px;
}

.product-info{
    padding:20px;
}

.product-info small{
    color:#64748b;
    display:block;
    font-weight:800;
    margin-bottom:8px;
}

.product-info h3{
    font-size:17px;
    line-height:1.45;
    min-height:50px;
    margin-bottom:10px;
}

.product-info h3 a{
    color:#0f172a;
}

.product-info h3 a:hover{
    color:#2563eb;
}

.rating-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:12px;
}

.rating-row span{
    color:#f59e0b;
    font-size:13px;
    letter-spacing:.06em;
}

.rating-row small{
    color:#94a3b8;
    font-size:12px;
    font-weight:800;
}

.product-price{
    font-size:24px;
    font-weight:950;
    color:#2563eb;
    letter-spacing:-.03em;
    margin-bottom:15px;
}

.product-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.cart-mini-btn{
    background:#2563eb;
    color:#fff;
    padding:10px 14px;
    border-radius:14px;
    font-size:13px;
    font-weight:950;
    white-space:nowrap;
}

.cart-mini-btn:hover{
    background:#1d4ed8;
    color:#fff;
}

.cart-mini-btn.disabled{
    background:#e5e7eb;
    color:#64748b;
}

.stock-badge{
    padding:8px 11px;
}

/* Sections */

.light-section{
    background:
        linear-gradient(180deg,#f8fafc,#eef4ff);
}

.section-header{
    text-align:center;
    margin-bottom:46px;
}

.section-header span{
    display:inline-flex;
    background:#eff6ff;
    color:#2563eb;
    padding:8px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:15px;
}

.section-header h2{
    font-size:40px;
    font-weight:950;
    letter-spacing:-.05em;
    color:#0f172a;
    margin-bottom:12px;
}

.section-header p{
    max-width:720px;
    margin:auto;
    color:#64748b;
    line-height:1.8;
    font-size:16px;
}

/* Wholesale CTA */

.wholesale-cta{
    padding:86px 0 30px;
}

.wholesale-cta-inner{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top right,rgba(255,255,255,.22),transparent 30%),
        linear-gradient(135deg,#2563eb,#0f172a);
    border-radius:34px;
    padding:64px;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:34px;
    box-shadow:0 30px 70px rgba(37,99,235,.22);
}

.wholesale-cta-inner::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    left:-120px;
    bottom:-120px;
}

.wholesale-cta-inner > *{
    position:relative;
    z-index:1;
}

.wholesale-cta-inner span{
    display:inline-flex;
    margin-bottom:12px;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:#bfdbfe;
}

.wholesale-cta-inner h2{
    font-size:42px;
    font-weight:950;
    letter-spacing:-.05em;
    margin-bottom:14px;
}

.wholesale-cta-inner p{
    max-width:760px;
    opacity:.9;
    line-height:1.8;
}

.wholesale-cta .primary-btn{
    background:#fff;
    color:#2563eb;
    min-width:230px;
}

.wholesale-cta .primary-btn:hover{
    background:#eff6ff;
    color:#1d4ed8;
}

/* Carousel Buttons */

.carousel-control-prev,
.carousel-control-next{
    width:54px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:44px;
    height:44px;
    border-radius:50%;
    background-color:#2563eb;
    background-size:55%;
}

/* Responsive */

@media(max-width:1200px){
    .product-grid,
    .category-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .hero-content h1{
        font-size:48px;
    }
}

@media(max-width:991px){
    .hero-slide{
        grid-template-columns:1fr;
        min-height:auto;
    }

    .hero-content{
        padding:44px;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-image{
        min-height:330px;
    }

    .product-grid,
    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .wholesale-cta-inner{
        flex-direction:column;
        text-align:center;
        padding:48px;
    }

    .wholesale-cta-inner h2{
        font-size:34px;
    }
}

@media(max-width:576px){
    .home-hero{
        padding:18px 0 36px;
    }

    .hero-slide{
        border-radius:24px;
    }

    .hero-content{
        padding:28px;
    }

    .hero-content h1{
        font-size:31px;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-actions{
        flex-direction:column;
    }

    .hero-actions a{
        width:100%;
    }

    .hero-image{
        min-height:240px;
    }

    .product-grid,
    .category-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:30px;
    }

    .wholesale-cta{
        padding:50px 0 20px;
    }

    .wholesale-cta-inner{
        padding:34px 24px;
        border-radius:26px;
    }

    .wholesale-cta-inner h2{
        font-size:28px;
    }

    .product-img{
        height:230px;
    }
}