header .header-logo img {
    max-height: 65px;
}
.checkout-options input[type=radio] {
    width: 20px !important;
    margin-right: 10px !important;
}
.payment-method.offer-balloon {
    background-image: linear-gradient(to right, #FF4136, #FF851B, #FFDC00);
    color: #fff;
    position: absolute;
    top: -40px;
    right: -40px;
    width: 70px;
    height: 70px;
    padding: 5px 0 0 0;
    border-radius: 50%;
    font-weight: 800;
    font-size: 15px;
    font-family: sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px 2px #9e9e9ebf;
    line-height: 20px;
}
.blink_me {
    animation: txtblinker 1s linear infinite; /* Blink animation */
}

/* Keyframes for the blinking effect */
@keyframes txtblinker {
    50% {
        opacity: 0; /* Set the opacity to 0 to make it disappear */
    }
}
.tiro-bangla-regular {
    font-family: "Tiro Bangla", serif;
    font-style: normal;
}

.tiro-bangla-regular-italic {
    font-family: "Tiro Bangla", serif;
    font-style: italic;
}
.noto-sans-hindi {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.pm-details-bx{
    box-shadow: 0 3px 4px 0 #e9e9e9;
    border: 1px solid #ebebeb;
    border-radius: 6px;
}
.terms-condition-box label {
    display: block;
}
.terms-condition-box input[type=checkbox] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 4px;
    left: 0;
}
.terms-condition-box .box {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: inline-block;
}
.terms-condition-box .box:before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid #e4e4e4;
    position: absolute;
    top: 5px;
    left: 0;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.terms-condition-box input[type=checkbox].is-invalid + .box:before {
    border-color: #dc3545;
}
.terms-condition-box input[type=checkbox]:checked + .box:after {
    display: block;
}
.terms-condition-box .box:after {
    position: absolute;
    left: 7px;
    top: 9px;
    content: "";
    width: 6px;
    height: 10px;
    display: none;
    border: solid #232323;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.text-decoration-line-bottom {
    border-bottom: 1px solid; /* Bottom border */
    text-decoration: none!important; /* No underline */
}

.text-decoration-line-bottom:hover {
    text-decoration: none!important; /* No underline on hover */
    border-bottom: 1px solid; /* Keep the bottom border on hover */
}

.li-checkbox .form-check input[type=checkbox] {
    margin: 0 15px 0 0;
    padding: 10px;
    border-color: #4CAF50;
}
.li-checkbox .form-check {
    margin: 0;
}
img, svg {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}
.product-description table tr{
    border: none;
}
.product-image-thumb .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.6;
    background: #0a0a0a;
    cursor: pointer;
}
.product-image-thumb .swiper-slide-thumb-active {
    opacity: 1;
    border: 1px solid #a9a9a9;
}
.product-image-thumb .swiper-slide:hover {
    opacity: 1;
}
.slider-product-next.swiper-button-next, .slider-product-prev.swiper-button-prev{
    background: rgb(17 17 17 / 51%);
    color: #FF4136;
}
.slider-product-next.swiper-button-next::after, .slider-product-prev.swiper-button-prev::after{
    font-size: 22px;
    padding: 10px 8px;
    font-weight: bolder;
}
.checkout-container {
    margin-bottom: 110px;
}
.other-pages ul li {
    list-style: inherit!important;
}
.spp-reviews .masonry .masonry-item .post{
    border-radius: 6px !important;
}
.box-shadow-quadruple-large, .box-shadow-quadruple-large-hover:hover {
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.spp-reviews #star-rating .fa-star {
    font-size: 40px;
    color: #ddd;
}
.spp-reviews #star-rating .fa-star.checked {
    color: #d7b4b2;
}
.spp-reviews #star-rating .fa-star.hovered {
    color: #ef524e;
}
.btn-pulse {
    position: relative;
    outline: none;
    z-index: 1; /* Keep the button content above the pulse */
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Light shadow for depth */
}
.btn-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 62, 62, 0.59); /* Ensure pulse is behind the text */
    background-image: linear-gradient(to right, rgba(244, 67, 54, 0.75), rgba(255, 129, 0, 0.75), rgba(244, 67, 54, 0.75));
    border-radius: 5px;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    z-index: -1; /* Keep the pulse animation behind the button text */
    animation: enhanced-pulse 1.2s ease infinite;
}
@keyframes enhanced-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1, 1);
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1, 1.5);
        opacity: 0;
    }
}
.tracking-container .tracking-detail .shipment-tracker {
    position: relative;
    padding: 20px 0;
    margin-top: 20px;
}

.tracking-container .tracking-detail .tracker-item {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 0 15px 0;
}

.tracking-container .tracking-detail .tracker-item:not(:last-child):before {
    content: '';
    position: absolute;
    left: 20px;
    top: 46px;
    height: 50px;
    width: 2px;
    background-color: #4CAF50;
}

.tracking-container .tracking-detail .tracker-icon {
    width: 40px;
    height: 40px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: white;
}

.tracking-container .tracking-detail .tracker-content {
    padding-left: 20px;
}

.tracking-container .tracking-detail .tracker-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 24px;
}

.tracking-container .tracking-detail .tracker-content p {
    font-size: 14px;
    margin: 0;
}

.uni99-icon-text-wrapper {
    display: flex;
    align-items: center; /* Vertically middle both icon and text */
}
.uni99-icon-container {
    flex-shrink: 0; /* Prevent icon from shrinking */
    width: 50px; /* Fixed width for the icon */
    text-align: center; /* Center the icon horizontally */
}
.uni99-text-container {
    flex-grow: 1; /* Text can grow to occupy the rest of the space */
    padding-left: 10px; /* Space between icon and text */
}
.box-shadow-green {
    box-shadow: 0 0 6px 4px #00AF6B;
}
.pbw-card {
    background: #f2f2f2;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0px 1px 3px rgb(0 0 0 / 18%);
}
.pbw-card .pbw-img {
    max-width: 60px;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}
.pbw-card .pbw-title, .pbw-card .pbw-title a {
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    color: #525252;
}
.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pbw-card .pbw-rating {
    font-size: 11px;
    line-height: 17px;
}
.pbw-card .pbw-price-box {
    margin-top: 5px;
    line-height: 17px;
}
.line-through {
    text-decoration: line-through;
    font-weight: 500;
    margin-left: 3px;
}
.pbw-card .pbw-price-box .discount {
    font-weight: 500;
    font-size: 12px;
}
.form-check-input[type=checkbox] {
    padding: 10px !important;
}
input[type="checkbox"]:checked {
    background-color: #289800!important;
    border-color: #289800!important;
}
input[type="radio"] {
    accent-color: #289800!important;
}
input, select, textarea, .form-control, .form-select {
    border: 2px solid #289800!important;
    color: #000000;
}
.pbw-card .form-check-label {
    display: block;
    padding-left: 15px;
    cursor: pointer;
}
.pbw-saving-msg {
    font-size: 12px;
    text-align: center;
    font-weight: 500;
}
.pbw-buy-all-btn {
    background: transparent;
    color: #000080;
    padding: 12px;
    font-weight: bold;
    border-radius: 30px;
    width: 100%;
    margin-top: 15px;
    text-align: center;
    border: 0.13rem dashed;
}



.xs-checkout {
    box-shadow: 0 -5px 15px 0 rgb(0 0 0 / 15%);
    padding: 0;
    background: #ffffff;
}
.xs-checkout .xs-checkout-btn {
    padding: 13px 13px;
    /*background: #12f31b;*/
    border: 1px solid #DDDDDD;
}
.xs-checkout .xs-checkout-btn button {
    padding: 15px 20px;
}
.xs-checkout .xs-sliding-window {
    overflow: hidden;
    transition: max-height 400ms ease-in-out;
    max-height: 0;
    position: relative;
}
.xs-checkout .xs-sliding-window .closeBtn-wrapper {
    padding-top: 50px;
    width: 100%;
}
.xs-checkout .xs-sliding-window .closeBtn-wrapper button.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    float: right;
}
.xs-checkout .xs-sliding-window .closeBtn-wrapper button.btn-back {
    position: absolute;
    top: 10px;
    left: 10px;
    border: none;
    cursor: pointer;
    line-height: 24px;
    color: #000000;
    opacity: 0.5;
    font-size: 24px;
}
.xs-checkout .xs-sliding-window.show {
    max-height: calc(88vh - 132px);
}
.xs-checkout .xs-sliding-window.show .xs-content-wrapper {
    max-height: calc(88vh - 182px);
}
.xs-checkout .xs-sliding-window .xs-content-wrapper {
    padding: 0 20px 10px 20px;
    overflow-y: auto;
}
.xs-checkout .xs-sliding-window .xs-content-wrapper .form-shipping-details input,
.xs-checkout .xs-sliding-window .xs-content-wrapper .form-shipping-details select,
.xs-checkout .xs-sliding-window .xs-content-wrapper .form-shipping-details textarea,
.xs-checkout .xs-sliding-window .xs-content-wrapper .form-shipping-details .form-control,
.xs-checkout .xs-sliding-window .xs-content-wrapper .form-shipping-details .form-select{
    padding: 8px 15px;
}
.running-bg {
    background: linear-gradient(270deg, #f7e8ff, #e0f7fa, #f7e8ff);
    background-size: 600% 600%;
    animation: gradientMove 30s ease infinite;
}
.svd2day {
    padding: 8px 20px;
    color: #ffffff;
    font-weight: 500;
    border-style: dotted !important;
    border-radius: 5px;
    letter-spacing: 1px;
    border-color: #FFEB3B;
    border-width: 2px;
    font-size: 15px;
    max-width: 310px;
    text-align: center;
    line-height: 24px;
}

.cmp-rel-products {
    border: 1px solid #ddd;
    border-radius: 6px !important;
    box-shadow: 0 1px 3px 1px #ddd;
    margin-bottom: 10px;
}
.swiper-custom-arrow {
    background-color: #000000aa;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    color: #ffffff;
    font-size: 24px;
}

.toast-sell-alert-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1055;
}

.toast-sell-alert-container .toast-custom {
    background-color: rgb(255, 250, 161);
    border: none;
    line-height: 20px;
}

.toast-sell-alert-container .toast-custom .toast-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px!important;
    opacity: 100%;
    background: #d7ffad;
}

.toast-sell-alert-container .toast-custom .cus-name .cus-time,
.toast-sell-alert-container .toast-custom .cus-item,
.toast-sell-alert-container .toast-custom .cus-loc {font-size: 11px;!important;line-height: 16px;}
.toast-sell-alert-container .toast-custom .cus-name {font-size: 14px;!important; line-height: 18px;}


@media only screen and (max-width: 767px){
    .checkout-container {
        margin-bottom: 50px;
    }
    .p-xs-20px {
        padding: 20px!important;
    }

    .toast-sell-alert-container .toast-custom {
        max-width: 345px;
    }
}

/* mobile only: change to row, let items auto-size and wrap */
@media (max-width: 575.98px) {
    .footer-quicklinks {
        /* override Bootstrap's flex-column */
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;         /* center the row(s) on mobile */
        gap: 8px 12px;                   /* vertical row gap then horizontal gap */
        padding: 0;
    }

    .footer-quicklinks > li {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;             /* keep each link on one line */
        margin: 6px 0;                   /* small vertical spacing between wrapped rows */
        border: none!important;                    /* remove any bootstrap borders that break the layout */
        line-height: 15px!important;
        font-size: 13px;
    }

    /* add subtle vertical divider between items (except the first in a row) */
    .footer-quicklinks > li + li {
        position: relative;
        padding-left: 12px;
    }

    /*.footer-quicklinks > li + li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 14px;
        background: #e6e6e6; !* choose a color that matches your theme *!
    }*/
}

