::selection {
    color: #000;
    background: #ff7300;
}

h1 {
    font-size: 0;
}

body {
    background: linear-gradient(140.6deg, rgb(6, 2, 2) 42.4%, #ff7300 100%);
}

header {
    box-shadow: 0px 1px 5px 0px #ff7300;
}

section {
    padding: 50px 0;
}

.category-page {
    display: flex;
}

.no-products {
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    align-self: center;
    margin-left: 200px;
}

.category-page-filters {
    background: #fff;
    padding: 15px;
    flex-basis: 20%;
    max-height: 50vh;
    height: max-content;
    border: 2px solid #ff7300;
    position: sticky;
    top: 13%;
    overflow-y: auto;
}

.filterlinks {
    padding: 10px;
    border-bottom: 1px solid #000;
}

.categoryFilter-main {
    font-size: 24px;
    font-weight: bold;
    text-decoration: underline;
    -moz-text-decoration-color: #ff7300;
    text-decoration-color: #ff7300;
    text-align: center;
    margin-bottom: 10px;
}

label span::after {
    content: "+";
    margin-left: 20px;
    font-weight: 900;
    font-size: 20px;
}

.checkbox-dropdown-list {
    clear: both;
    width: 100%;
    height: 0px;
    overflow: hidden;
    /* overflow-Y: scroll; */
    transition: height .4s ease;
}

.checkbox-dropdown-list.show {
    min-height: 1000px;
    /* A large enough value to accommodate all the list items */
}

.hidden {
    display: none !important;
}

.checkbox-dropdown {
    border-bottom: 1px solid #000;
    padding: 10px;
}

.checkbox-dropdown-list label {
    padding: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border: 1px solid #000;
    border-collapse: separate;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #ff7300;
    margin: 0;

    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);

    display: grid;
    place-content: center;
}

input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    /* Windows High Contrast Mode */
    background-color: CanvasText;
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

input[type="checkbox"]:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
}


.touch {
    position: absolute;
    opacity: 0;
    height: 0px;
}

.touch:checked+.checkbox-dropdown-list {
    /* max-height: 350px; */
    height: max-content;
}

.touch:checked label span::after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

#price-range-header {
    cursor: pointer;
}

.price-content {
    height: 0;
    overflow: hidden;
    -moz-transition: height 0.5s ease;
    -ms-transition: height 0.5s ease;
    -o-transition: height 0.5s ease;
    -webkit-transition: height 0.5s ease;
    transition: height 0.5s ease;
}

.price-content.open {
    height: 100px;
}

.price-input {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.price-input {
    width: 100%;
    display: flex;
    margin: 10px 0;
}

.price-input .field {
    display: flex;
    width: 100%;
    /* height: 45px; */
    align-items: center;
    justify-content: center;
}

.field input {
    width: 100%;
    height: 100%;
    outline: none;
    /* font-size: 19px; */
    margin-left: 12px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.price-input .separator {
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
}

.slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.slider .progress {
    height: 100%;
    left: 0%;
    right: 0%;
    position: absolute;
    border-radius: 5px;
    background: #ff7300;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    margin: 0;
    top: -5px;
    cursor: grab;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.range-input input:active {
    cursor: grabbing;
}

input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: #ff7300;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #ff7300;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.applyFilter {
    margin-top: 15px;
    align-items: center;
    appearance: none;
    background-color: #fff;
    border-radius: 24px;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px, rgba(0, 0, 0, .14) 0 6px 10px 0, rgba(0, 0, 0, .12) 0 1px 18px 0;
    box-sizing: border-box;
    color: #3c4043;
    cursor: pointer;
    display: inline-flex;
    fill: currentcolor;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    justify-content: center;
    letter-spacing: .25px;
    line-height: normal;
    max-width: 100%;
    overflow: visible;
    padding: 2px 24px;
    position: relative;
    text-align: center;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: auto;
    will-change: transform, opacity;
    z-index: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.applyFilter:hover {
    background: #F6F9FE;
    color: #ff7300;
}

.applyFilter:active {
    box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
    outline: none;
}

.applyFilter:active {
    outline: none;
    border: 2px solid #ff7300;
}

.applyFilter:not(:disabled) {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.applyFilter:not(:disabled):hover {
    box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
}

.applyFilter:not(:disabled):active {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.applyFilter:not(:disabled):active {
    box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
}

.applyFilter:disabled {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}


.category-page-products {
    display: flex;
    justify-content: space-around;
    align-content: space-between;
    flex-basis: 80%;
    flex-direction: column;
    flex-wrap: wrap;
}

.category-page-loader {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.category-productCardHolder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.card {
    height: 430px;
    width: 300px;
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, .12);
}

.image {
    height: 300px;
}

.image img {
    display: block;
    width: 100%;
    height: inherit;
    object-fit: cover;
}

.loader-content {
    padding: 2rem 1.8rem;
}

.loader-heading {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
}

.loader-description {
    font-size: 1rem;
    line-height: 1.4rem;
}

.loading .image,
.loading h4,
.loading .loader-description {
    background-color: #ededed;
    background: linear-gradient(100deg,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, .5) 50%,
            rgba(255, 255, 255, 0) 60%) #ededed;
    background-size: 200% 100%;
    background-position-x: 180%;
    animation: 1s loading ease-in-out infinite;
}

@keyframes loading {
    to {
        background-position-x: -20%;
    }
}

.loading h4 {
    min-height: 1.6rem;
    border-radius: 4px;
    animation-delay: .05s;
}

.loading .loader-description {
    min-height: 2rem;
    border-radius: 4px;
    animation-delay: .06s;
}

.brand-info {
    color: #fff;
    margin-bottom: 50px;
    font-size: 2vh;
}

.brand-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brand-info h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333;
}

.brand-wordings-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 10px 0;
}

.brand-wordings-list li {
    font-size: 1em;
    color: #555;
    margin-bottom: 8px;
}

.brand-wordings-list li::marker {
    color: #ff6b6b;
    /* Customize the bullet color if needed */
}


.mainCategory {
    margin: 20px 0;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px 0px, rgba(0, 0, 0, 0.09) 0px 4px 2px 0px, rgba(0, 0, 0, 0.09) 0px 8px 4px 0px, rgba(0, 0, 0, 0.09) 0px 16px 8px 0px, rgba(0, 0, 0, 0.09) 0px 32px 16px 0px;
}

.productCard {
    background: rgba(77, 77, 77, .9);
    width: max-content;
    border: 1px solid #ff7300;
    margin-bottom: 200px;
}

.productCard-price {
    margin: 10px 0;
}

.productCard-content {
    padding: 10px;
    display: flex;
    height: 130px;
    text-align: center;
    color: #fff;
    border: 1px solid #ff7300;
    border-top: none;
    background: rgb(56, 55, 55);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.productCard:hover {
    box-shadow: #ff7300 0px 20px 30px -10px;
}

.productCard:nth-last-child(-n+5):hover {
    box-shadow: #000 0px 20px 30px -10px;
}

.products-container {
    width: 300px;
    height: 300px;
    position: relative;
    background: rgba(77, 77, 77, .9);
    cursor: pointer;
    -webkit-box-shadow: 0 0 5px #000;
    box-shadow: 0 0 5px #000;
}

.productImage {
    position: absolute;
    top: 0;
    left: 0;
}

.product-overlay {
    z-index: -1;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    background: rgba(77, 77, 77, .9);
    color: #FEF5DF;
    opacity: 0;
    transition: all 0.5s;
    flex-direction: column;
    justify-content: space-around;
}


.items {
    padding-left: 20px;
    position: relative;
    font-size: 18px;
    /* text-transform: capitalize; */
    opacity: 0;

    transform: translateY(40px);
    transition: all 0.7s;

    .productCard-hr {
        margin-top: 5px;
        position: absolute;
        bottom: 0;
        display: block;
        width: 0;


        border: none;
        border-bottom: solid 2px #FEF5DF;


        transition: all .5s;
    }
}

.products-container:hover .product-overlay {
    z-index: 1;
    opacity: 1;
    background: rgba(77, 77, 77, .9);

    & .attribute-1 {
        transform: translateY(0px);
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);

        & .productCard-hr {
            transition-delay: 0.2s;
        }
    }

    & .productCard-hr {
        width: 75px;
    }

    & .attribute-2 {
        transform: translateY(0px);
        transition-delay: 0.2s;
        opacity: 1;

        & .productCard-hr {
            transition-delay: 0.4s;
        }
    }

    & .attribute-3 {
        transition-delay: 0.4s;
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);

        & .productCard-hr {
            transition-delay: 0.6s;
        }
    }

    & .attribute-4 {
        transition-delay: 0.6s;
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);

        & .productCard-hr {
            transition-delay: 0.8s;
        }
    }

    & .attribute-4 {
        transition-delay: 0.7s;
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);

        & .productCard-hr {
            transition-delay: .9s;
        }
    }

    & .attribute-5 {
        transition-delay: 0.8s;
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);

        & .productCard-hr {
            transition-delay: 1s;
        }
    }

    & .attribute-6 {
        transition-delay: 0.9s;
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);

        & .productCard-hr {
            transition-delay: 1.1s;
        }
    }

    & .attribute-7 {
        transition-delay: 1s;
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);

        & .productCard-hr {
            transition-delay: 1.2s;
        }
    }
}

.productCard:hover .productCard-content {
    background-color: #fff;
    color: #000;
    box-shadow: #ff7300 0px 20px 30px -10px;
}

.productCard:nth-last-child(-n+5):hover .productCard-content {
    box-shadow: #000 0px 20px 30px -10px;
}

.productCard:hover .productCard-title {
    text-decoration: underline;
    -moz-text-decoration-color: #ff7300;
    text-decoration-color: #ff7300;
}

.fa-cart-plus {
    background: #ff7300;
}

.addtocart {
    display: block;
    border-radius: 100px;
    border: none;
    position: relative;
    background: #ff7300;
    cursor: pointer;
    width: 100%;
    height: 30px;
    padding: 10px 20px;
    overflow: hidden;
    -webkit-transition: transform 0.1s;
    -moz-transition: transform 0.1s;
    -ms-transition: transform 0.1s;
    -o-transition: transform 0.1s;
    transition: transform 0.1s;
}

.whatsappenquiry_button-btn {
    display: block;
    border-radius: 100px;
    border: none;
    position: relative;
    background: #1ebe5d;;
    cursor: pointer;
    width: 100%;
    height: 30px;
    padding: 10px 20px;
    overflow: hidden;
    -webkit-transition: transform 0.1s;
    -moz-transition: transform 0.1s;
    -ms-transition: transform 0.1s;
    -o-transition: transform 0.1s;
    transition: transform 0.1s;
}

.whatsappenquiry_button-btn-pretext {
    color: #fff;
    background: #1ebe5d;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.pretext {
    color: #fff;
    background: #ff7300;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Quicksand', sans-serif;
}

.whatsappenquiry_button-btn-pretext:hover {
    background: #0a0a0a;
}

.pretext:hover, .pretext:hover i {
    background: #0a0a0a;
}

i {
    margin-right: 10px;
}

.done {
    background: #be2edd;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;

    transform: translate(-110%) skew(-40deg);
}

.pretext.done:hover,
.pretext.done:hover i {
  background: #be2edd;
}

.posttext {
    background: #be2edd;
}

.fa-check {
    background: #be2edd;
}

#pagination {

    display: flex;

    flex-direction: row;

    justify-content: space-around;

    align-items: center;

    gap: 10px;

    margin: 0 auto;


    button {
        background: #000;
        border: 1px solid #000;
        border-radius: 6px;
        box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
        box-sizing: border-box;
        color: #FFFFFF;
        cursor: pointer;
        display: inline-block;
        font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
        font-size: 16px;
        font-weight: 800;
        line-height: 16px;
        min-height: 40px;
        outline: 0;
        padding: 12px 14px;
        text-align: center;
        text-rendering: geometricprecision;
        text-transform: none;
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
        vertical-align: middle;
    }

    button:hover,
    button:active {
        background-color: #fff;
        background-position: 0 0;
        color: #000;
    }

    button:active {
        opacity: .5;
    }

    button.active {
        color: #ff7300;
        border: 1px solid #fff;
    }

    button:disabled {
        cursor: not-allowed;
        opacity: .5;
        color: red;
    }


}

/* MEDIA QUERIES START HERE */

@media only screen and (max-width: 480px) {

    .category-page {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .category-page-filters {
        overflow: hidden;
        position: relative;
        max-height: 30px;
        text-align: center;
        transition: max-height 0.9s ease;
        -webkit-transition: max-height 0.9s ease;
        -moz-transition: max-height 0.9s ease;
        -ms-transition: max-height 0.9s ease;
        -o-transition: max-height 0.9s ease;
    }

    .categoryFilter-main {
        position: relative;
    }

    .categoryFilter-main::after {
        content: '';
        position: absolute;
        left: 13%;
        top: 10%;
        display: block;
        height: 30px;
        background-color: #ff7300;
        width: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
        -webkit-transform: rotate(35deg);
        -moz-transform: rotate(35deg);
        -ms-transform: rotate(35deg);
        -o-transform: rotate(35deg);
        transform: rotate(35deg);
        -webkit-transition: .5s;
        -moz-transition: .5s;
        -ms-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
    }

    .categoryFilter-main::before {
        content: '';
        position: absolute;
        top: 10%;
        left: 7.5%;
        height: 30px;
        background-color: #ff7300;
        width: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
        transform: rotate(-35deg);
        -webkit-transform: rotate(-35deg);
        -moz-transform: rotate(-35deg);
        -ms-transform: rotate(-35deg);
        -o-transform: rotate(-35deg);
        transition: .5s;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        -ms-transition: .5s;
        -o-transition: .5s;
    }

    .category-page-filters.open {
        max-height: max-content;
    }

    .category-page-filters.open .categoryFilter-main::before {
        left: 10%;
        top: 5%;
    }

    .category-page-filters.open .categoryFilter-main::after {
        left: 10%;
        top: 5%;
    }

    .productCard {
        margin-bottom: 160px;
        width: 140px;
    }

    .category-page-products {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        align-content: center;
    }

    .products-container {
        height: 140px;
        width: 140px;
    }

    .button-text {
        font-size: 12px;
    }

    .productImage {
        height: 140px;
        flex-basis: 50%;
        width: 140px;
        overflow: hidden;
        text-align: center;
    }

    .productImage img {
        height: 100%;
        width: 100%;
        margin: 0 -30px;
        overflow: hidden;
    }

    .product-overlay {
        width: 140px;
    }

    .items {
        font-size: 14px;
    }

    .productCard-content {
        width: 140px;
        padding: 0;
        height: 140px;
        z-index: 1;
    }

    .productCard:hover .productCard-title a {
        text-decoration: underline;
        text-decoration-color: #ff7300;
        -moz-text-decoration-color: #ff7300;
    }

    .productCard-title {
        font-size: 12px;
    }

    .productCard-price {
        margin: 0px;
    }

    .addtocart, .whatsappenquiry_button-btn {
        font-size: 14px;
        width: 90%;
        padding: 5px 10px;
    }

    .pretext, .whatsappenquiry_button-btn {
        font-size: 12px;
    }

    #pagination {

        gap: 5px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin: 0 50px;

        button {
            font-size: 12px;
            padding: 10px;
            height: max-content;
        }

    }

    .no-products {
        margin-left: 0;
    }

}

@media (max-width: 768px) {
  .whatsappenquiry_button-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .whatsappenquiry_button-btn-pretext {
    font-size: 0 !important;  
    gap: 0;
  }

  .whatsappenquiry_button-btn-pretext i {
    font-size: 14px;
    margin-right: 6px;
  }

  .whatsappenquiry_button-btn-pretext::after {
    content: "Enquire";
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
  }

  .whatsappenquiry_button-btn .pretext,
  .whatsappenquiry_button-btn .done {
    display: none !important;
  }
}

/* MEDIA QUERIES ENDS HERE */

/* WHATSAPP BOT STYLING STARTS FROM HERE  */
.whatsapp_icon_wrapper{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999;
}

.whatsapp_icon_button{
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg,#25d366 0,#1da851 100%);
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
  cursor: pointer;
  outline: none;
  transition: transform .18s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: visible;
}

.whatsapp_icon_button::after{
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.45);
  animation: whatsapp_iconPulse 2.6s infinite;
  pointer-events: none;
  opacity: 0.9;
}

@keyframes whatsapp_iconPulse{
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.35); transform: scale(1); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0.05); transform: scale(1.03); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.0); transform: scale(1); }
}

.whatsapp_icon_button:active{ transform: scale(.98); }
.whatsapp_icon_icon { display:block; }

.whatsapp_icon_small_popup{
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 250px;
  display: none;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.whatsapp_icon_small_img, .whatsapp_icon_agent_img{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:contain;
  flex-shrink:0;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  background: #000;
}

.whatsapp_icon_small_text { 
  font-size:13px; 
  color:#222; 
  line-height:1.1; 
  margin-left: 9px;
}
.whatsapp_icon_small_name { font-weight:700; margin-bottom:3px; display:flex; align-items:center; gap:8px; }
.whatsapp_icon_small_role { color:#666; font-size:12px; }

.whatsapp_icon_online_dot{
  color: #0bbd6a;
  background: rgba(11,189,106,0.06);
  padding: 2px 6px;
  border-radius: 999px;
  font-weight:600;
  font-size:12px;
}

.whatsapp_icon_box{
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 320px;
  display: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  font-family: "Montserrat", sans-serif !important;
  font-weight: 300;
}

.whatsapp_icon_header{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px;
  background: #075E54;
  color:#fff;
}
.whatsapp_icon_agent_meta{ min-width:0; }
.whatsapp_icon_agent_name{ font-weight:700; font-size:15px; line-height:1; }
.whatsapp_icon_status{ font-size:12px; opacity:0.92; color:rgba(255,255,255,0.92); margin-top:4px; }

.whatsapp_icon_close{
  margin-left:auto;
  background:transparent;
  border:0;
  color:#fff; font-size:18px;
  cursor:pointer;
  padding:6px;
}

.whatsapp_icon_small_close {
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #666;
}

.whatsapp_icon_body{ padding:14px; background:#ece5dd; }
.whatsapp_icon_msg{
  background:#fff; padding:10px 12px; border-radius:10px; display:inline-block; font-size:14px; color:#222;
}

.whatsapp_icon_cta{
  display:block; text-align:center; padding:12px 0; font-weight:700; text-decoration:none;
  background: linear-gradient(180deg,#25d366 0,#1da851 100%);
  color:#fff; border-radius:0 0 12px 12px;
}

@media (max-width:520px){
  .whatsapp_icon_wrapper{ right:14px; bottom:14px; }
  .whatsapp_icon_box{
    width: calc(100% - 28px);
    right: 14px;
    left: 14px;
    bottom: 80px;
    position: fixed;
    border-radius: 14px;
  }
  .whatsapp_icon_small_popup{ 
    box-sizing: border-box; }
  .whatsapp_icon_small_img{ width:42px; height:42px; }
}


.whatsapp_icon_show { display:flex !important; animation: whatsapp_iconShow .28s ease both; }
@keyframes whatsapp_iconShow{ from{ opacity:0; transform: translateY(8px) scale(.98) } to { opacity:1; transform: translateY(0) scale(1) } }


.whatsapp_icon_box.whatsapp_icon_show{ display:block !important; }
/* WHATSAPP BOT STYLING ENDS HERE  */
