/*=========================================================
    SANVI MASALE
    SHOP PAGE
=========================================================*/

:root{

    --shop-primary:#C62828;

    --shop-primary-dark:#A61919;

    --shop-red:#E53935;

    --shop-green:#1B5E20;

    --shop-green-light:#2E7D32;

    --shop-gold:#FFC107;

    --shop-dark:#242424;

    --shop-text:#555;

    --shop-light:#FFF8F2;

    --shop-border:#EEEEEE;

    --shop-white:#FFFFFF;

    --shop-shadow:
        0 12px 35px rgba(0,0,0,.08);

    --shop-transition:
        all .35s ease;

}


/*=========================================================
    SHOP PAGE
=========================================================*/

.shop-page{

    background:#fff;

    overflow:hidden;

}


/*=========================================================
    SHOP HERO
=========================================================*/

.shop-hero{

    min-height:420px;

    position:relative;

    display:flex;

    align-items:center;

    background:
        linear-gradient(
            90deg,
            rgba(76,8,4,.96),
            rgba(130,18,12,.82),
            rgba(198,40,40,.55)
        ),
        url("../images/about-banner.jpg")
        center/cover no-repeat;

    overflow:hidden;

}


.shop-hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    right:-120px;

    bottom:-220px;

    border-radius:50%;

    border:70px solid
        rgba(255,193,7,.16);

}


.shop-hero-overlay{

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(255,193,7,.18),
            transparent 35%
        );

}


.shop-hero-content{

    position:relative;

    z-index:2;

    max-width:750px;

    padding:70px 0;

    color:#fff;

}


.shop-hero-tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 22px;

    border:1px solid
        rgba(255,193,7,.65);

    background:
        rgba(255,193,7,.10);

    border-radius:50px;

    color:#FFD54F;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}


.shop-hero-content h1{

    font-size:
        clamp(38px,5vw,65px);

    line-height:1.08;

    font-weight:800;

    margin:0 0 20px;

}


.shop-hero-content h1 span{

    color:#FFC107;

    display:inline-block;

}


.shop-hero-content p{

    max-width:650px;

    font-size:18px;

    line-height:1.8;

    color:
        rgba(255,255,255,.88);

    margin-bottom:25px;

}


.shop-breadcrumb{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:14px;

}


.shop-breadcrumb a{

    color:#FFC107;

    text-decoration:none;

    font-weight:600;

}


.shop-breadcrumb span{

    color:
        rgba(255,255,255,.75);

}


.shop-breadcrumb i{

    font-size:11px;

    opacity:.7;

}


/*=========================================================
    SHOP INTRO
=========================================================*/

.shop-intro{

    padding:70px 0 40px;

    background:#fff;

}


.shop-intro-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

}


.shop-intro-text{

    max-width:700px;

}


.section-mini-title{

    display:inline-block;

    color:var(--shop-primary);

    font-size:12px;

    font-weight:800;

    letter-spacing:2px;

    margin-bottom:12px;

}


.shop-intro-text h2{

    font-size:
        clamp(30px,4vw,45px);

    font-weight:800;

    color:var(--shop-dark);

    margin-bottom:15px;

}


.shop-intro-text h2 strong{

    color:var(--shop-primary);

}


.shop-intro-text p{

    font-size:16px;

    line-height:1.8;

    color:#666;

    margin:0;

}


.shop-stat-box{

    display:flex;

    gap:15px;

    flex-shrink:0;

}


.shop-stat{

    min-width:125px;

    padding:20px 15px;

    border:1px solid
        var(--shop-border);

    border-radius:16px;

    background:#fff;

    display:flex;

    align-items:center;

    gap:12px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.05);

}


.shop-stat i{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#FFF3E0;

    color:var(--shop-primary);

}


.shop-stat strong{

    display:block;

    font-size:19px;

    color:var(--shop-dark);

}


.shop-stat span{

    display:block;

    font-size:11px;

    color:#888;

    margin-top:3px;

}


/*=========================================================
    CATEGORY NAVIGATION
=========================================================*/

.shop-category-nav{

    padding:20px 0 45px;

}


.category-filter-wrapper{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}


.category-filter{

    min-width:220px;

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 20px;

    border:1px solid
        var(--shop-border);

    border-radius:14px;

    background:#fff;

    color:var(--shop-dark);

    text-decoration:none;

    transition:
        var(--shop-transition);

    box-shadow:
        0 5px 20px rgba(0,0,0,.04);

}


.category-filter:hover{

    border-color:var(--shop-primary);

    transform:
        translateY(-3px);

    color:var(--shop-primary);

}


.category-filter.active{

    background:
        linear-gradient(
            135deg,
            var(--shop-primary),
            var(--shop-red)
        );

    color:#fff;

    border-color:
        var(--shop-primary);

    box-shadow:
        0 10px 25px
        rgba(198,40,40,.20);

}


.filter-icon{

    width:40px;

    height:40px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
        rgba(255,255,255,.15);

    font-size:20px;

}


.category-filter:not(.active)
.filter-icon{

    background:#FFF3E0;

}


.category-filter span:not(.filter-icon){

    font-size:14px;

    font-weight:700;

    flex:1;

}


.category-filter small{

    font-size:10px;

    opacity:.7;

    white-space:nowrap;

}


/*=========================================================
    PRODUCT CATEGORY SECTION
=========================================================*/

.product-category-section{

    padding:80px 0;

    background:#fff;

    scroll-margin-top:80px;

}


.product-category-section.category-alt{

    background:
        linear-gradient(
            180deg,
            #FFF9F4 0%,
            #fff 100%
        );

}


/*=========================================================
    CATEGORY HEADING
=========================================================*/

.category-heading{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:30px;

    margin-bottom:40px;

}


.category-heading-left{

    display:flex;

    align-items:center;

    gap:20px;

}


.category-number{

    width:62px;

    height:62px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
        linear-gradient(
            135deg,
            var(--shop-primary),
            var(--shop-red)
        );

    color:#fff;

    font-size:20px;

    font-weight:800;

    box-shadow:
        0 10px 25px
        rgba(198,40,40,.18);

}


.category-small-title{

    display:block;

    color:#999;

    font-size:11px;

    letter-spacing:2px;

    font-weight:700;

    margin-bottom:5px;

}


.category-heading h2{

    font-size:
        clamp(28px,4vw,40px);

    color:var(--shop-dark);

    font-weight:800;

    margin:0;

}


.category-heading h2 span{

    color:var(--shop-primary);

}


.category-heading-right{

    text-align:right;

    max-width:350px;

}


.category-heading-right p{

    font-size:14px;

    color:#777;

    line-height:1.6;

    margin-bottom:10px;

}


.product-count{

    display:inline-block;

    padding:7px 15px;

    border-radius:30px;

    background:#FFF3E0;

    color:var(--shop-primary);

    font-size:12px;

    font-weight:700;

}


/*=========================================================
    PRODUCT CARD
=========================================================*/

.shop-product-card{

    height:100%;

    background:#fff;

    border:1px solid
        var(--shop-border);

    border-radius:22px;

    overflow:hidden;

    transition:
        var(--shop-transition);

    position:relative;

}


.shop-product-card:hover{

    transform:
        translateY(-8px);

    border-color:
        rgba(198,40,40,.20);

    box-shadow:
        0 20px 45px
        rgba(0,0,0,.11);

}


/*=========================================================
    PRODUCT IMAGE
=========================================================*/

.product-image-area{

    height:300px;

    background:
        linear-gradient(
            145deg,
            #FFFDF9,
            #FFF4E8
        );

    position:relative;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;

}


.product-image-link{

    width:100%;

    height:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:20px;

}


.product-image{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:
        transform .55s ease;

    mix-blend-mode:multiply;

}


.shop-product-card:hover
.product-image{

    transform:
        scale(1.08);

}


/*=========================================================
    PREMIUM BADGE
=========================================================*/

.product-quality-badge{

    position:absolute;

    top:15px;

    left:15px;

    z-index:3;

    padding:7px 11px;

    border-radius:30px;

    background:#fff;

    color:var(--shop-primary);

    font-size:10px;

    font-weight:800;

    box-shadow:
        0 5px 15px rgba(0,0,0,.08);

}


.product-quality-badge i{

    color:#FFC107;

    margin-right:3px;

}


/*=========================================================
    WISHLIST
=========================================================*/

.product-wishlist{

    position:absolute;

    top:14px;

    right:14px;

    z-index:4;

    width:40px;

    height:40px;

    border:1px solid
        #eee;

    border-radius:50%;

    background:#fff;

    color:#555;

    cursor:pointer;

    transition:
        var(--shop-transition);

}


.product-wishlist:hover{

    background:var(--shop-primary);

    color:#fff;

    border-color:
        var(--shop-primary);

    transform:
        scale(1.08);

}


/*=========================================================
    IMAGE OVERLAY
=========================================================*/

.product-image-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    justify-content:center;

    padding-bottom:15px;

    background:
        linear-gradient(
            transparent 60%,
            rgba(0,0,0,.20)
        );

    opacity:0;

    transition:
        var(--shop-transition);

}


.shop-product-card:hover
.product-image-overlay{

    opacity:1;

}


.quick-view-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:9px 18px;

    background:#fff;

    color:var(--shop-primary);

    border-radius:30px;

    text-decoration:none;

    font-size:12px;

    font-weight:700;

    box-shadow:
        0 8px 20px
        rgba(0,0,0,.15);

}


/*=========================================================
    PRODUCT CONTENT
=========================================================*/

.product-card-content{

    padding:22px;

}


.product-category-label{

    color:var(--shop-green);

    font-size:10px;

    font-weight:800;

    letter-spacing:1.5px;

    margin-bottom:7px;

}


.product-name{

    margin:0 0 8px;

}


.product-name a{

    color:var(--shop-dark);

    font-size:20px;

    font-weight:750;

    line-height:1.3;

    text-decoration:none;

    transition:
        var(--shop-transition);

}


.product-name a:hover{

    color:var(--shop-primary);

}


/*=========================================================
    RATING
=========================================================*/

.product-rating{

    display:flex;

    align-items:center;

    gap:8px;

    margin-bottom:18px;

}


.stars{

    color:#FFC107;

    font-size:13px;

    letter-spacing:1px;

}


.rating-text{

    color:#999;

    font-size:10px;

}


/*=========================================================
    WEIGHTS
=========================================================*/

.product-weight-title{

    font-size:11px;

    color:#888;

    font-weight:600;

    margin-bottom:8px;

}


.product-weights{

    display:flex;

    flex-wrap:wrap;

    gap:7px;

    margin-bottom:20px;

}


.weight-pill{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:7px 12px;

    background:#F7F7F7;

    border:1px solid #eee;

    border-radius:8px;

    color:#555;

    font-size:11px;

    font-weight:700;

}


.weight-pill:first-child{

    background:#FFF3E0;

    color:var(--shop-primary);

    border-color:#FFE0B2;

}


/*=========================================================
    PRODUCT ACTIONS
=========================================================*/

.product-card-actions{

    display:flex;

    align-items:center;

    gap:8px;

}


.view-product-btn{

    flex:1;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    border-radius:11px;

    background:
        linear-gradient(
            135deg,
            var(--shop-primary),
            var(--shop-red)
        );

    color:#fff;

    text-decoration:none;

    font-size:12px;

    font-weight:700;

    transition:
        var(--shop-transition);

}


.view-product-btn:hover{

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--shop-green),
            var(--shop-green-light)
        );

    transform:
        translateY(-2px);

}


.cart-icon-btn{

    width:45px;

    height:45px;

    border:1px solid
        var(--shop-border);

    border-radius:11px;

    background:#fff;

    color:var(--shop-primary);

    cursor:pointer;

    transition:
        var(--shop-transition);

}


.cart-icon-btn:hover{

    background:var(--shop-primary);

    color:#fff;

    border-color:
        var(--shop-primary);

}


/*=========================================================
    SHOP CTA
=========================================================*/

.shop-cta{

    padding:30px 0 90px;

}


.shop-cta-box{

    position:relative;

    overflow:hidden;

    display:flex;

    align-items:center;

    gap:25px;

    padding:40px 50px;

    border-radius:25px;

    background:
        linear-gradient(
            120deg,
            #7D1010,
            #C62828,
            #E53935
        );

    color:#fff;

    box-shadow:
        0 20px 50px
        rgba(198,40,40,.20);

}


.shop-cta-box::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    border:50px solid
        rgba(255,193,7,.12);

    right:-100px;

    top:-150px;

}


.shop-cta-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    background:
        rgba(255,255,255,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:35px;

    flex-shrink:0;

}


.shop-cta-content{

    flex:1;

    position:relative;

    z-index:2;

}


.shop-cta-content span{

    font-size:10px;

    letter-spacing:2px;

    font-weight:700;

    color:#FFD54F;

}


.shop-cta-content h2{

    margin:7px 0;

    font-size:30px;

    font-weight:800;

}


.shop-cta-content h2 strong{

    color:#FFC107;

}


.shop-cta-content p{

    margin:0;

    color:
        rgba(255,255,255,.82);

    font-size:14px;

}


.shop-cta-btn{

    position:relative;

    z-index:3;

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 25px;

    border-radius:40px;

    background:#fff;

    color:var(--shop-primary);

    text-decoration:none;

    font-size:13px;

    font-weight:800;

    transition:
        var(--shop-transition);

    white-space:nowrap;

}


.shop-cta-btn:hover{

    color:#fff;

    background:var(--shop-green);

    transform:
        translateY(-3px);

}


/*=========================================================
    RESPONSIVE
=========================================================*/

@media(max-width:1199px){

    .shop-intro-wrapper{

        align-items:flex-start;

        flex-direction:column;

    }

    .shop-stat-box{

        width:100%;

    }

    .shop-stat{

        flex:1;

    }

}


@media(max-width:991px){

    .shop-hero{

        min-height:380px;

    }

    .category-heading{

        align-items:flex-start;

        flex-direction:column;

    }

    .category-heading-right{

        text-align:left;

        max-width:100%;

    }

    .product-image-area{

        height:280px;

    }

    .shop-cta-box{

        padding:35px;

    }

}


@media(max-width:767px){

    .shop-hero{

        min-height:360px;

    }

    .shop-hero-content{

        padding:50px 15px;

    }

    .shop-hero-content p{

        font-size:15px;

    }

    .shop-intro{

        padding:50px 0 20px;

    }

    .shop-stat-box{

        display:grid;

        grid-template-columns:
            repeat(3,1fr);

        gap:8px;

    }

    .shop-stat{

        min-width:0;

        padding:14px 8px;

        flex-direction:column;

        text-align:center;

        gap:6px;

    }

    .shop-stat i{

        width:36px;

        height:36px;

    }

    .shop-stat strong{

        font-size:16px;

    }

    .shop-stat span{

        font-size:9px;

    }

    .category-filter-wrapper{

        display:grid;

        grid-template-columns:
            1fr;

    }

    .category-filter{

        width:100%;

    }

    .product-category-section{

        padding:55px 0;

    }

    .category-heading-left{

        gap:12px;

    }

    .category-number{

        width:50px;

        height:50px;

        border-radius:14px;

        font-size:16px;

    }

    .category-heading h2{

        font-size:28px;

    }

    .product-image-area{

        height:300px;

    }

    .shop-cta-box{

        flex-direction:column;

        text-align:center;

        padding:35px 25px;

    }

    .shop-cta-content h2{

        font-size:25px;

    }

}


@media(max-width:575px){

    .shop-hero-content h1{

        font-size:38px;

    }

    .shop-stat-box{

        grid-template-columns:
            repeat(3,1fr);

    }

    .product-card-content{

        padding:18px;

    }

    .product-name a{

        font-size:18px;

    }

    .product-image-area{

        height:270px;

    }

    .category-heading{

        margin-bottom:28px;

    }

}


/* =====================================================
   SHOP CART TOAST
===================================================== */

.shop-toast {
    position: fixed;

    right: 25px;
    bottom: 25px;

    min-width: 320px;
    max-width: 420px;

    padding: 16px 18px;

    background: #ffffff;

    border-radius: 14px;

    display: flex;

    align-items: center;

    gap: 12px;

    z-index: 99999;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.18);

    transform:
        translateY(30px);

    opacity: 0;

    transition:
        all 0.3s ease;

    font-size: 14px;

    font-weight: 600;
}


.shop-toast.show {

    transform:
        translateY(0);

    opacity: 1;

}


.shop-toast > i {

    font-size: 20px;

}


.shop-toast-success {

    color: #247a3b;

    border-left:
        5px solid #28a745;

}


.shop-toast-error {

    color: #b42318;

    border-left:
        5px solid #dc3545;

}


.shop-toast .toast-close {

    margin-left: auto;

    border: none;

    background: transparent;

    color: inherit;

    cursor: pointer;

    font-size: 16px;

}


.shop-toast .toast-close:hover {

    opacity: 0.7;

}


/* =====================================================
   CART BUTTON SUCCESS ANIMATION
===================================================== */

.cart-icon-btn.cart-added {

    transform:
        scale(1.12);

}


@media (max-width: 576px) {

    .shop-toast {

        left: 15px;

        right: 15px;

        bottom: 15px;

        min-width: auto;

        max-width: none;

    }

}

/* =====================================================
   PACK SIZE BUTTON
===================================================== */

.weight-pill {

    cursor: pointer;

    border: 1px solid #ddd;

    background: #fff;

    padding: 8px 15px;

    border-radius: 30px;

    transition: all 0.25s ease;

}


.weight-pill:hover {

    border-color: #c62828;

    color: #c62828;

}


.weight-pill.active {

    background: #c62828;

    border-color: #c62828;

    color: #fff;

}


/* =====================================================
   ADD TO CART BUTTON
===================================================== */

.add-to-cart-btn {

    cursor: pointer;

}


.add-to-cart-btn:disabled {

    cursor: wait;

    opacity: .7;

}


/* =====================================================
   TOAST
===================================================== */

.shop-toast {

    position: fixed;

    right: 25px;

    bottom: 25px;

    min-width: 320px;

    max-width: 420px;

    padding: 15px 18px;

    background: #fff;

    border-radius: 12px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.18);

    display: flex;

    align-items: center;

    gap: 12px;

    z-index: 999999;

    opacity: 0;

    transform:
        translateY(30px);

    transition:
        all .3s ease;

}


.shop-toast.show {

    opacity: 1;

    transform:
        translateY(0);

}


.shop-toast-success {

    border-left:
        5px solid #28a745;

    color: #247a3b;

}


.shop-toast-error {

    border-left:
        5px solid #dc3545;

    color: #b42318;

}


.shop-toast > i {

    font-size: 20px;

}


.toast-close {

    margin-left: auto;

    border: none;

    background: transparent;

    cursor: pointer;

    color: inherit;

}