/*
==========================================
ZIPLITE CATALOG PRO V2
==========================================
*/

:root{

    --primary:#0D47A1;

    --secondary:#1565C0;

    --accent:#FF6F00;

    --light:#F7F9FC;

    --border:#E5E7EB;

    --text:#222;

    --radius:18px;

    --shadow:

        0 8px 25px rgba(0,0,0,.08);

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

body{

    font-family:

        "Poppins",

        sans-serif;

    background:#fff;

    color:var(--text);

}


.ziplite-title{

    font-size:28px;

    font-weight:700;

    margin-bottom:20px;

    color:var(--primary);

}

section{

    margin-bottom:20px;

}
/* ==========================
SEARCH
========================== */

.ziplite-search-wrapper{

    width:100%;

    max-width:1500px;

    margin:auto;

    padding:0 20px;

}

#ziplite-search{

    width:100%;

    max-width:700px;

    height:60px;

    border:none;

    outline:none;

    padding:0 25px;

    font-size:18px;

    border-radius:50px;

    box-shadow:var(--shadow);

    transition:

        height .3s,

        max-width .3s,

        font-size .3s,

        box-shadow .3s;

}

.ziplite-search-section.sticky #ziplite-search{

    height:48px;

    max-width:650px;

    font-size:16px;

}

#ziplite-search:focus{

    border:2px solid

    var(--primary);

}


/* ==========================
SHOP BY GENDER
========================== */

.ziplite-gender-row{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin:18px 0;

}

.ziplite-gender-card{

    width:90px;

    height:90px;

    background:#fff;

    border-radius:14px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    transition:.25s;

    border:1px solid #ececec;

    box-shadow:0 4px 12px rgba(0,0,0,.06);

}

.ziplite-gender-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

.ziplite-gender-card.active{

    background:var(--primary);

    color:#fff;

}

.ziplite-gender-card.active img{

    transform:scale(1.08);

}

/* ==========================
   GENDER ICON
========================== */

.ziplite-gender-icon{

    width:52px;

    height:52px;

    margin:0 auto;

    display:flex;

    align-items:center;

    justify-content:center;

}

.ziplite-gender-icon img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:transform .25s ease;

}

.ziplite-gender-name{

    font-size:14px;

    font-weight:600;

}

/* ==========================
CATEGORY
========================== */

.ziplite-category-row{

    display:flex;

    gap:14px;

    overflow-x:auto;

    padding-bottom:10px;

    scroll-behavior:smooth;

}
.ziplite-category-row::-webkit-scrollbar{

    height:8px;

}

.ziplite-category-row::-webkit-scrollbar-thumb{

    background:#d6d6d6;

    border-radius:20px;

}

.ziplite-category-card{

    flex:0 0 auto;

    width:135px;

    padding:10px 6px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    background:#fff;

    border-radius:16px;

    border:2px solid transparent;

    box-shadow:0 5px 16px rgba(0,0,0,.08);

    transition:.3s;

    cursor:pointer;

}

.ziplite-category-card:hover{

    transform:translateY(-6px);

    border-color:var(--accent);

}
.ziplite-category-card.active{

    border-color:var(--primary);

}

.ziplite-category-image{

    width:72px;

    height:72px;

    margin-bottom:6px;

    flex-shrink:0;

}

.ziplite-category-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:16px;

}



.ziplite-category-card:hover img{

    transform:scale(1.08);

}

.ziplite-category-info{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

}

.ziplite-category-info h3{

    margin:0;
    padding:0;

    font-size:14px;
    font-weight:700;
    line-height:1.15;

    color:#222;

}

.ziplite-category-info span{

    font-size:11px;

    color:#777;

}
/* ==========================
SLIDERS
========================== */

.ziplite-slider{

    display:flex;

    flex-direction:row;

    flex-wrap:nowrap;

    align-items:flex-start;

    gap:14px;

    overflow-x:auto;

    overflow-y:hidden;

    padding:10px 5px 15px;

}

.ziplite-slider::-webkit-scrollbar{

    height:8px;

}

.ziplite-slider::-webkit-scrollbar-thumb{

    background:#d0d0d0;

    border-radius:50px;

}

.ziplite-slider-card{

    flex:0 0 170px;

    width:170px;

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

    cursor:pointer;

    border:2px solid transparent;

}


.ziplite-slider-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

.ziplite-slider-image{

    height:170px;

    padding:0;

    background:#fff;

    overflow:hidden;

}

.ziplite-slider-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

}

.ziplite-slider-card:hover img{

    transform:scale(1.08);

}
.ziplite-slider-info{

    padding:8px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.ziplite-slider-info h3{

    font-size:22px;

    color:var(--primary);

    line-height:1.35;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    margin-bottom:12px;

    overflow:hidden;

}

.ziplite-slider-price{

    font-size:18px;

    font-weight:700;

    color:var(--accent);

    margin:0;

    text-align:center;

}

.ziplite-slider-size{

    color:#666;

    height:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

}
.ziplite-slider-button{

    width:100%;

    height:45px;

    border:none;

    border-radius:10px;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    font-size:16px;

    transition:.3s;

}

.ziplite-slider-button:hover{

    background:var(--secondary);

}
/* ==========================
ALL PRODUCTS GRID
========================== */

.ziplite-product-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fill,minmax(300px,1fr));

    gap:30px;

}

.ziplite-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

    border:2px solid transparent;

    display:flex;

    flex-direction:column;

}

.ziplite-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}
.ziplite-card-image{

    height:360px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fff;

    overflow:hidden;

}

.ziplite-card-image img{

    width:100%;

    height:100%;

    object-position:center 70%;

    transition:.35s;

}

.ziplite-card:hover img{

    transform:scale(1.08);

}
.ziplite-info{

    padding:14px 18px 16px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.ziplite-info h3{

    font-size:24px;

    color:var(--primary);

    margin:0 0 6px;

    line-height:1.2;

}

.ziplite-price{

    font-size:24px;

    color:var(--accent);

    font-weight:700;

    margin:0 0 6px;

    line-height:1.2;

}

.ziplite-size{

    font-size:16px;

    color:#666;

    margin:0;

    line-height:1.3;

}

.ziplite-description{

    color:#666;

    line-height:1.6;

    margin-bottom:25px;

    min-height:55px;

}

.ziplite-view-details{

    margin-top:auto;

    height:48px;

    border:none;

    border-radius:12px;

    background:var(--primary);

    color:#fff;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}

.ziplite-view-details:hover{

    background:var(--secondary);

}
/* ==========================
POPUP
========================== */

.ziplite-popup{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.ziplite-popup-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(4px);

}

.ziplite-popup-content{

    position:relative;

    width:95%;

    max-width:1200px;

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    display:grid;

    grid-template-columns:55% 45%;

    box-shadow:0 30px 80px rgba(0,0,0,.25);

    z-index:2;

}
.popup-left{
    padding:8px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fafafa;
}

.popup-left img{
    width:100%;
    height:100%;
    max-height:700px;
    object-fit:contain;
}

.popup-right{

    padding:40px;

    overflow-y:auto;

}

.popup-right h2{

    font-size:34px;

    color:var(--primary);

    margin-bottom:15px;

}
.popup-price{

    font-size:34px;

    color:var(--accent);

    font-weight:700;

    margin-bottom:30px;

}

.popup-table{

    width:100%;

    border-collapse:collapse;

    margin-bottom:30px;

}

.popup-table th{

    width:180px;

    text-align:left;

     padding:8px 14px;

    background:#f8f8f8;

    font-weight:600;

}

.popup-table td{

    padding:8px 14px;

    line-height:1.35;

    border-bottom:1px solid #eee;

}
.popup-description{

    margin-bottom:30px;

}

.popup-description h4{

    font-size:22px;

    margin-bottom:10px;

}

.popup-description p{

    color:#555;

    line-height:1.8;

}

.popup-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 30px;

    background:#25D366;

    color:#fff;

    text-decoration:none;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.popup-button:hover{

    background:#1da851;

}
.popup-close{

    position:absolute;

    top:20px;

    right:20px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#f3f3f3;

    cursor:pointer;

    font-size:28px;

    transition:.3s;

    z-index:10;

}

.popup-close:hover{

    background:#ff4d4d;

    color:#fff;

}
/* ==========================
MOBILE
========================== */

@media(max-width:992px){

    .ziplite-popup-content{

        grid-template-columns:1fr;

        width:95%;

        max-height:90vh;

        overflow-y:auto;

    }

    .popup-left{

        padding:20px;

    }

    .popup-left img{

        max-height:300px;

    }

    .popup-right{

        padding:25px;

    }

    .popup-right h2{

        font-size:28px;

    }

    .popup-price{

        font-size:28px;

    }

}
@media(max-width:768px){

    .ziplite-product-grid{

    grid-template-columns:repeat(2,1fr);

    gap:12px;

}

.ziplite-card{

    border-radius:12px;

    overflow:hidden;

}

.ziplite-card-image{

    height:170px;

    padding:0;

    background:#fff;

}

.ziplite-card-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

}

.ziplite-info{

    padding:10px;

}

.ziplite-info h3{

    font-size:14px;

    margin:0 0 4px;

    line-height:1.2;

    font-weight:600;

    min-height:36px;

    height:auto;

    overflow:hidden;

}
    
     .ziplite-size,
    .ziplite-material,
    .ziplite-description,
    .ziplite-mrp{

        display:none;

    }

 .ziplite-price{

        font-size:18px;
margin:0;

    line-height:1.2;
        margin-bottom:0;

    }

    
    .ziplite-view-details{

        display:none;

    }

    .ziplite-gender-row{

        gap:15px;

    }

    .ziplite-gender-card{

        width:110px;

        height:110px;

    }

    .ziplite-gender-icon{

        font-size:40px;

    }

    .ziplite-gender-name{

        font-size:15px;

    }

}
@media(max-width:576px)
{
.ziplite-card-image{

    height:240px;

}

.ziplite-slider-image{

    height:200px;

}



    .ziplite-title{

        font-size:22px;

    }

    #ziplite-search{

        height:52px;

        font-size:15px;

    }

    .ziplite-category-card{

        min-width:135px;

    }



    .popup-table th{

        width:120px;

    }

}
/* ==========================
ANIMATIONS
========================== */

.ziplite-card,
.ziplite-slider-card,
.ziplite-category-card,
.ziplite-gender-card{

    transition:

        transform .35s,

        box-shadow .35s,

        border-color .35s;

}

.ziplite-card:hover,
.ziplite-slider-card:hover{

    box-shadow:

        0 20px 40px rgba(0,0,0,.15);

}

html{

    scroll-behavior:smooth;

}
/* ==========================
UTILITY
========================== */

.hidden{

    display:none !important;

}

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mb-20{

    margin-bottom:20px;

}

.rounded{

    border-radius:var(--radius);

}
.ziplite-material,
.ziplite-mrp{

    display:none;

}


/* ==========================
STICKY SEARCH
========================== */

.ziplite-search-section{

    position:relative;

    background:#fff;

    padding:5px 0 10px;

    transition:all .35s ease;

}

.ziplite-search-section.sticky{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:#fff;

    padding:10px 0;

    box-shadow:0 6px 18px rgba(0,0,0,.10);

    animation:zipliteSlideDown .3s ease;

}

body.admin-bar .ziplite-search-section.sticky{

    top:32px;

}

@keyframes zipliteSlideDown{

    from{

        transform:translateY(-100%);

        opacity:0;

    }

    to{

        transform:translateY(0);

        opacity:1;

    }

}

.ziplite-catalog-v2{

    max-width:1500px;

    margin:auto;

    padding:10px 20px 40px;

}

.ziplite-divider{

    width:85%;

    height:1px;

    background:#e5e7eb;

    margin:12px auto 15px;

}

.ziplite-gender-section{

    margin-top:10px;

    margin-bottom:10px;

}

/* Remove Woostify page spacing */

.site-main{

    padding-top:0 !important;

}

.content-area{

    padding-top:0 !important;

}

.entry-content{

    margin-top:0 !important;

}

.post-8008{

    margin-top:0 !important;

}

.ziplite-all-products .ziplite-title{

    font-size:16px;

    font-weight:500;

    color:#8a8a8a;

    margin-bottom:16px;

}

.ziplite-no-result{

    color:#d32f2f;

    font-weight:700;

}

.ziplite-subfilters{

    display:none;

    gap:12px;

    margin:18px 0 28px;

    overflow-x:auto;

    padding-bottom:8px;

}

.ziplite-subfilters.active{

    display:flex;

}

.ziplite-subfilters select{

    min-width:170px;

    height:42px;

    border:1px solid #dcdcdc;

    border-radius:10px;

    background:#fff;

    padding:0 12px;

    font-size:14px;

    cursor:pointer;

    flex-shrink:0;

}

.ziplite-clear-filters{
    
    display:none;

    height:36px;

    padding:0 18px;

    border:none;

    border-radius:8px;

    background:#e53935;

    color:#fff;

    font-size:13px;

    font-weight:600;

    cursor:pointer;

    white-space:nowrap;

    transition:.25s;

}

.ziplite-clear-filters.show{

    display:inline-flex;

}

.ziplite-clear-filters:hover{

    background:#c62828;

}

.ziplite-active-filters{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

    margin-top:12px;

    margin-bottom:20px;

}

.ziplite-filter-chip{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    white-space:nowrap;

    padding:6px 12px;

    border-radius:20px;

    background:#eef5ff;

    border:1px solid #b9d2ff;

    color:#0d47a1;

    font-size:13px;

    font-weight:600;

    cursor:pointer;

    width:auto;

    max-width:max-content;

}

.ziplite-filter-chip:hover{

    background:#d8e9ff;

}

/* ==================================
EXPORT CATALOG
================================== */

.ziplite-products-toolbar{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:12px;

    margin:0 0 18px;

    flex-wrap:wrap;


}

#ziplite-sort{

    height:42px;

    min-width:240px;

    padding:0 42px 0 16px;

    border:1px solid #ddd;

    border-radius:10px;

    background:#fff;

    color:#333;

    font-size:14px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 14px center;

    background-size:16px;

}

#ziplite-sort:hover{

    border-color:#d32f2f;

}

#ziplite-sort:focus{

    outline:none;

    border-color:#d32f2f;

    box-shadow:0 0 0 3px rgba(211,47,47,.15);

}

.ziplite-export-btn{

    display:flex;

    align-items:center;

    gap:8px;

    height:42px;

    padding:0 18px;

    background:#d32f2f;

    color:#fff;

    border:none;

    border-radius:10px;

    font-size:14px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.ziplite-export-btn:hover{

    background:#b71c1c;

    transform:translateY(-2px);

}

/*==================================
EXPORT MODAL
==================================*/

.ziplite-export-modal{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.ziplite-export-modal.active{

    display:flex;

}

.ziplite-export-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(4px);

}

.ziplite-export-box{

    position:relative;

    width:420px;

    max-width:92%;

    background:#fff;

    border-radius:18px;

    padding:30px;

    z-index:2;

    box-shadow:0 20px 60px rgba(0,0,0,.18);

}

.ziplite-export-box h2{

    margin-bottom:8px;

}

.ziplite-export-box p{

    color:#666;

    margin-bottom:22px;

}

.ziplite-export-option{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:18px;

    font-size:15px;

    cursor:pointer;

}

.ziplite-export-start{

    width:100%;

    height:46px;

    background:#D32F2F;

    color:#fff;

    border:none;

    border-radius:10px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

}

.ziplite-export-close{

    position:absolute;

    top:14px;

    right:16px;

    background:none;

    border:none;

    font-size:28px;

    cursor:pointer;

}

.ziplite-pdf-loading{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.ziplite-pdf-loading.active{

    display:flex;

}

.ziplite-pdf-loading-box{

    width:420px;

    max-width:90%;

    background:#fff;

    border-radius:12px;

    padding:35px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.ziplite-loading-bar{

    width:100%;

    height:10px;

    background:#ececec;

    border-radius:20px;

    overflow:hidden;

    margin-top:20px;

}

#ziplite-loading-progress{

    width:0%;

    height:100%;

    background:#0b6efd;

    transition:width .15s linear;

}

#ziplite-loading-percent{

    margin-top:15px;

    font-size:18px;

    font-weight:600;

}


.ziplite-filter-actions{

    display:flex;

    justify-content:flex-end;

     margin:12px 0 4px;

}

@media (max-width: 768px) {

    .ziplite-catalog-v2{
        padding: 10px 4px 40px;
    }

}

/* ==========================
   LIGHTBOX
========================== */

.ziplite-lightbox{

    position:fixed;
    inset:0;

    display:flex;

    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.92);

    opacity:0;
    visibility:hidden;

    transition:.25s;

    z-index:999999;
}

.ziplite-lightbox.active{

    opacity:1;
    visibility:visible;

}

#ziplite-lightbox-image{

    max-width:92vw;
    max-height:92vh;

    object-fit:contain;

    cursor:zoom-out;

    border-radius:10px;

}

.ziplite-lightbox-close{

    position:absolute;

    top:20px;
    right:35px;

    color:#fff;

    font-size:42px;

    cursor:pointer;

    user-select:none;

}

.popup-image-wrapper{

    cursor:zoom-in;
    position:relative;

}

.popup-image-zoom{

    position:absolute;

    right:12px;
    top:12px;

    width:36px;
    height:36px;

    border-radius:50%;

    background:rgba(255,255,255,.92);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;

    transition:.2s;

    font-size:18px;

}

.popup-image-wrapper:hover .popup-image-zoom{

    opacity:1;

}

.popup-navigation{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:12px;

    margin:18px 0;

}

.popup-nav-btn{

    width:130px;

    height:42px;

    border:none;

    border-radius:8px;

    background:#0D47A1;

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

    flex:none;

}

.popup-nav-btn:hover{

    background:#1565C0;

}
.popup-nav-btn:disabled{

    opacity:.45;

    cursor:not-allowed;

    background:#cfcfcf;

}

/* ==========================
WHATSAPP COMMUNITY POPUP
========================== */

.ziplite-community-popup{

    position:fixed;
    inset:0;

    display:none;

    align-items:center;
    justify-content:center;

    z-index:999999;

}

.ziplite-community-popup.active{

    display:flex;

}

.ziplite-community-overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(4px);

}

.ziplite-community-box{

    position:relative;

    width:420px;
    max-width:90%;

    background:#fff;

    padding:35px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

    z-index:2;

}

.ziplite-community-icon{

    font-size:46px;

    margin-bottom:12px;

}

.ziplite-community-box h2{

    font-size:25px;

    color:#0D47A1;

    margin:0 0 10px;

}

.ziplite-community-box p{

    font-size:15px;

    line-height:1.6;

    color:#666;

    margin:0 0 25px;

}

.ziplite-community-join{

    display:flex;

    align-items:center;
    justify-content:center;

    width:100%;

    min-height:50px;

    padding:10px 20px;

    background:#25D366;

    color:#fff;

    border-radius:10px;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

}

.ziplite-community-join:hover{

    background:#1ebe5d;

    color:#fff;

}

.ziplite-community-close{

    position:absolute;

    top:12px;
    right:15px;

    width:38px;
    height:38px;

    border:none;

    border-radius:50%;

    background:#d32f2f;

    color:#fff;

    font-size:25px;

    font-weight:600;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.2s;

}

.ziplite-community-close:hover{

    background:#b71c1c;

    transform:scale(1.08);

}

.ziplite-add-cart{

    width:100%;

    height:40px;

    margin-top:10px;

    border:1px solid #0D47A1;

    border-radius:8px;

    background:#fff;

    color:#0D47A1;

    font-size:14px;

    font-weight:600;

    cursor:pointer;

    transition:.2s;

}

.ziplite-add-cart:hover{

    background:#0D47A1;

    color:#fff;

}

/* ==================================
   FLOATING CART BUTTON
================================== */

.ziplite-cart-button{

    position:fixed;

    right:20px;

    bottom:90px;

    z-index:999999;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:12px 18px;

    border-radius:30px;

    background:#0D47A1;

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    box-shadow:0 5px 20px rgba(0,0,0,.20);

}

#ziplite-cart-count{

    min-width:22px;

    height:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#fff;

    color:#0D47A1;

    font-size:12px;

    font-weight:700;

}

/* ==================================
   ZIPLITE CART POPUP
================================== */

.ziplite-cart-modal{

    position:fixed;

    inset:0;

    display:none;

    align-items:center;

    justify-content:center;

    z-index:999998;

}

.ziplite-cart-modal.active{

    display:flex;

}

.ziplite-cart-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);

    backdrop-filter:blur(4px);

}

.ziplite-cart-box{

    position:relative;

    width:600px;

    max-width:92%;

    max-height:85vh;

    overflow-y:auto;

    background:#fff;

    border-radius:20px;

    padding:28px;

    z-index:2;

    box-shadow:0 25px 70px rgba(0,0,0,.30);

}

.ziplite-cart-box h2{

    margin:0 0 20px;

    color:#0D47A1;

    font-size:25px;

}

.ziplite-cart-close{

    position:absolute;

    top:15px;

    right:15px;

    width:40px;

    height:40px;

    border:none;

    border-radius:50%;

    background:#d32f2f;

    color:#fff;

    font-size:25px;

    cursor:pointer;

}

.ziplite-cart-items{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.ziplite-cart-item{

    display:flex;

    align-items:center;

    gap:14px;

    padding:12px;

    border:1px solid #e5e7eb;

    border-radius:12px;

    background:#fff;

}

.ziplite-cart-item-image{

    width:80px;

    height:80px;

    flex:none;

    border-radius:10px;

    overflow:hidden;

    background:#f5f5f5;

}

.ziplite-cart-item-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.ziplite-cart-item-info{

    flex:1;

}

.ziplite-cart-item-info h3{

    margin:0 0 5px;

    color:#0D47A1;

    font-size:16px;

}

.ziplite-cart-item-info p{

    margin:2px 0;

    color:#555;

    font-size:13px;

}

.ziplite-cart-remove{

    width:32px;

    height:32px;

    border:none;

    border-radius:50%;

    background:#fbe9e7;

    color:#d32f2f;

    font-size:18px;

    cursor:pointer;

}

.ziplite-cart-empty{

    padding:35px 10px;

    text-align:center;

    color:#777;

    display:none;

}

.ziplite-cart-footer{

    margin-top:20px;

    padding-top:18px;

    border-top:1px solid #eee;

}

.ziplite-clear-cart{

    margin-top:12px;

    width:100%;

    height:42px;

    border:1px solid #d32f2f;

    border-radius:10px;

    background:#fff;

    color:#d32f2f;

    font-weight:600;

    cursor:pointer;

}

.ziplite-download-cart-pdf{

    margin-top:10px;

    width:100%;

    height:48px;

    border:none;

    border-radius:10px;

    background:#111;

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

}

.ziplite-download-cart-pdf:hover{

    opacity:.9;

}

.ziplite-share-cart{

    margin-top:10px;

    width:100%;

    height:48px;

    border:none;

    border-radius:10px;

    background:#25D366;

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

}

.ziplite-share-cart:hover{

    background:#1ebe5d;

}

@media(max-width:576px){

    .ziplite-cart-box{

        width:94%;

        padding:20px;

        max-height:88vh;

    }

    .ziplite-cart-item-image{

        width:65px;

        height:65px;

    }

    .ziplite-cart-item-info h3{

        font-size:14px;

    }

    .ziplite-cart-item-info p{

        font-size:12px;

    }

}

.ziplite-add-cart{
    position:relative;
    z-index:5;
}

/* ==================================
   ADDED TO CART STATE
================================== */

.ziplite-card.in-cart{

    border:2px solid #0D47A1;

    box-shadow:
        0 0 0 3px rgba(13,71,161,.10);

}

.ziplite-add-cart.added{

    background:#0D47A1;

    color:#fff;

    border-color:#0D47A1;

    cursor:default;

}

.popup-add-cart{

    height:48px;

    padding:0 20px;

    margin-left:8px;

    border:1px solid #0D47A1;

    border-radius:10px;

    background:#fff;

    color:#0D47A1;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.2s;

}

.popup-add-cart.added{

    background:#0D47A1;

    color:#fff;

    border-color:#0D47A1;

}

/* ==================================
 Coming Soon for Price 0
================================== */

.ziplite-coming-soon{
    color:#e67e22;
    font-size:18px;
    font-weight:700;
    letter-spacing:.5px;
    margin-top:4px;
    margin-bottom:8px;
}

/* =====================================
   SAVE CATALOGUE PDF MODAL
===================================== */

.ziplite-pdf-name-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.ziplite-pdf-name-modal.active {
    display: flex;
}

.ziplite-pdf-name-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
}

.ziplite-pdf-name-box {
    position: relative;
    z-index: 2;
    width: min(92%, 480px);
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    animation: ziplitePdfNameIn 0.2s ease;
}

@keyframes ziplitePdfNameIn {

    from {
        opacity: 0;
        transform: translateY(15px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.ziplite-pdf-name-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    color: #333;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.ziplite-pdf-name-close:hover {
    background: #e8e8e8;
}

.ziplite-pdf-name-box h2 {
    margin: 0 35px 8px 0;
    font-size: 24px;
    font-weight: 700;
}

.ziplite-pdf-name-label {
    margin: 20px 0 8px;
    font-size: 14px;
    font-weight: 600;
}

.ziplite-pdf-name-input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
}

.ziplite-pdf-name-input:focus {
    border-color: #222;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.ziplite-pdf-name-preview {
    margin: 12px 0 0;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    word-break: break-word;
}

.ziplite-pdf-name-preview strong {
    display: block;
    margin-top: 3px;
    color: #222;
    font-weight: 600;
}

.ziplite-pdf-name-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
}

.ziplite-pdf-name-cancel,
.ziplite-pdf-name-download {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 9px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.ziplite-pdf-name-cancel {
    background: #eeeeee;
    color: #333;
}

.ziplite-pdf-name-download {
    background: #111111;
    color: #ffffff;
}

.ziplite-pdf-name-download:hover {
    opacity: 0.88;
}

@media (max-width: 600px) {

    .ziplite-pdf-name-box {
        width: calc(100% - 28px);
        padding: 24px 20px;
        border-radius: 16px;
    }

    .ziplite-pdf-name-box h2 {
        font-size: 21px;
    }

    .ziplite-pdf-name-actions {
        flex-direction: column-reverse;
    }

    .ziplite-pdf-name-cancel,
    .ziplite-pdf-name-download {
        width: 100%;
    }

}