/*==================================================
    IPL CRACKERS
    site.css
==================================================*/


/*==================================================
    RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    font-size:14px;
}

body{
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    background:#f5f7fa;
    color:#212529;
    overflow-x:hidden;
    line-height:1.5;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
    transition:.25s;
}

button{
    outline:none;
    border:none;
}

.container,
.container-fluid,
.container-lg{
    width:100%;
}


/*==================================================
    COMMON
==================================================*/

.section-title{
    text-align:center;
    font-size:48px;
    font-weight:800;
    color:#0d2d6f;
    margin:70px 0 45px;
}

.section-title::after{
    content:"";
    display:block;
    width:90px;
    height:5px;
    background:#ffc107;
    margin:15px auto;
    border-radius:50px;
}

.btn{
    transition:.25s;
}

.btn:hover{
    transform:translateY(-2px);
}


/*==================================================
    SEARCH
==================================================*/

.search-box{
    width:96%;
    max-width:1500px;
    margin:20px auto;
    position:relative;
}

.search-box input{
    height:56px;
    border-radius:14px;
    font-size:17px;
    border:2px solid #dee2e6;
    padding:0 20px;
}

.search-box input:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);
}

.search-suggestions{
    position:absolute;
    width:100%;
    background:#fff;
    border-radius:0 0 14px 14px;
    overflow:hidden;
    display:none;
    z-index:1000;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.search-item{
    padding:14px 18px;
    cursor:pointer;
    border-bottom:1px solid #ececec;
}

.search-item:last-child{
    border-bottom:none;
}

.search-item:hover{
    background:#fff7d8;
}


/*==================================================
    CATEGORY BUTTONS
==================================================*/

.category-buttons{
    width:96%;
    max-width:1500px;
    margin:0 auto 25px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.category-buttons .btn{
    border-radius:30px;
    font-weight:600;
    padding:10px 18px;
}


/*==================================================
    PRODUCT COUNT
==================================================*/

.product-count{
    font-size:18px;
    font-weight:700;
}

#sortProducts{
    width:240px;
    font-weight:600;
}


/*==================================================
GLOBAL FIREWORK CANVAS
==================================================*/

#festivalCanvas{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:0;
    pointer-events:none;
}

/*==================================================
    UTILITIES
==================================================*/

.text-red{
    color:#dc3545;
}

.text-blue{
    color:#0d2d6f;
}

.text-green{
    color:#198754;
}

.shadow-box{
    background:#fff;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}


/*==================================================
    TABLET
==================================================*/

@media(max-width:992px){

.section-title{
font-size:38px;

}

}


/*==================================================
    MOBILE
==================================================*/

@media(max-width:768px){

    .section-title{
        font-size:34px;
        margin:45px 0 25px;
    }
}