.hidden{
    display: none!important;
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #4CAF50;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.toast-content {
    display: flex;
    flex-direction: column;
}

.toast button {
    margin-top: 10px;
    padding: 6px 10px;
    background: #fff;
    color: #4CAF50;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
    font-weight: bold;
}

.toast button:hover {
    background-color: #e6e6e6;
}

.hidden {
    display: none;
}

.custom-toast-container {
    position: fixed;
    z-index: 9999;
    bottom: 5px;
    right: 0px;
    max-width: 350px;
    width: 100%;
}

.toast {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    padding: 10px;
}

.toast-icon {
    margin-right: 16px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
}
.toast-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 0.9rem;
    line-height: 23.1px;
}

.toast-message {
    font-size: 0.85rem;
    line-height: 20px;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    transform-origin: left;
}

.toast-close {
    background: none!important;
    border: none!important;
    color: inherit!important;
    cursor: pointer!important;
    font-size: 1.2rem!important;
    opacity: 0.7!important;
    transition: opacity 0.2s!important;
    padding: 4px!important;
    margin-left: 8px!important;
}

.toast-close:hover {
    opacity: 1;
}

/* Toast Styles */
/* Style 1: Sass Master */
.toast-style-1 {
    background-color: #ff5252;
    color: white;
}

.toast-style-1 .toast-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.toast-style-1 .toast-progress {
    background-color: #ff1744;
}
/* style 2: Green */
.toast-style-2 {
    background-image: linear-gradient( 105.9deg,  rgba(0,122,184,1) 24.4%, rgba(46,0,184,0.88) 80.5% );
    /*background-color: #a0d35a;*/
    color: white;
}
.toast-style-2 .toast-progress {
    background-color: #a0d35a;
}
.toast-style-2 .toast-icon {
    font-size: 50px;
    background-color: rgba(255, 255, 255, 0.2);
}


/* Style 5: Royal Purple */
.toast-style-3 {
    background-color: #6200ea;
    color: white;
}

.toast-style-3 .toast-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.toast-style-3 .toast-progress {
    background-color: #3700b3;
}

/* Style 10: Gradient Glory */
.toast-style-4 {
    background: linear-gradient(45deg, #97d445, #3427a4);
    color: white;
}

.toast-style-4 .toast-icon {
    font-size: 30px;
    background-color: rgba(255, 255, 255, 0.2);
}

.toast-style-4 .toast-progress {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Animations */
/* Animation 1: Slide Right */
@keyframes slideRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRightOut {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast-animation-1-in {
    animation: slideRight 0.4s ease-out forwards;
}

.toast-animation-1-out {
    animation: slideRightOut 0.4s ease-in forwards;
}

/* Animation 2: Fade */
@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

.toast-animation-2-in {
    animation: fade 0.4s ease-out forwards;
}

.toast-animation-2-out {
    animation: fadeOut 0.4s ease-in forwards;
}

/* Animation 3: Bounce */
@keyframes bounce {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounceOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}

.toast-animation-3-in {
    animation: bounce 0.5s ease-out forwards;
}

.toast-animation-3-out {
    animation: bounceOut 0.5s ease-in forwards;
}

/* Animation 4: Slide Top */
@keyframes slideTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideTopOut {
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.toast-animation-4-in {
    animation: slideTop 0.4s ease-out forwards;
}

.toast-animation-4-out {
    animation: slideTopOut 0.4s ease-in forwards;
}

/* Animation 5: Flip */
@keyframes flip {
    from {
        transform: perspective(400px) rotateX(-90deg);
        opacity: 0;
    }
    to {
        transform: perspective(400px) rotateX(0);
        opacity: 1;
    }
}

@keyframes flipOut {
    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.toast-animation-5-in {
    animation: flip 0.5s ease-out forwards;
    transform-origin: top center;
}

.toast-animation-5-out {
    animation: flipOut 0.5s ease-in forwards;
    transform-origin: top center;
}

/* Animation 6: Zoom */
@keyframes zoom {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomOut {
    to {
        transform: scale(0);
        opacity: 0;
    }
}

.toast-animation-6-in {
    animation: zoom 0.4s ease-out forwards;
}

.toast-animation-6-out {
    animation: zoomOut 0.4s ease-in forwards;
}

/* Animation 7: Slide Left */
@keyframes slideLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideLeftOut {
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.toast-animation-7-in {
    animation: slideLeft 0.4s ease-out forwards;
}

.toast-animation-7-out {
    animation: slideLeftOut 0.4s ease-in forwards;
}

/* Animation 8: Rotate */
@keyframes rotate {
    from {
        transform: rotate(-90deg);
        opacity: 0;
    }
    to {
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateOut {
    to {
        transform: rotate(90deg);
        opacity: 0;
    }
}

.toast-animation-8-in {
    animation: rotate 0.5s ease-out forwards;
    transform-origin: top left;
}

.toast-animation-8-out {
    animation: rotateOut 0.5s ease-in forwards;
    transform-origin: top left;
}

/* Animation 9: Jello */
@keyframes jello {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 0;
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
        opacity: 0.5;
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
        opacity: 0.7;
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
        opacity: 0.8;
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
        opacity: 0.9;
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
        opacity: 1;
    }
    100% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

@keyframes jelloOut {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
        opacity: 0.8;
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
        opacity: 0.6;
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
        opacity: 0.4;
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
        opacity: 0.2;
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
        opacity: 0.1;
    }
    100% {
        transform: scale3d(1, 1, 1);
        opacity: 0;
    }
}

.toast-animation-9-in {
    animation: jello 0.8s ease-out forwards;
}

.toast-animation-9-out {
    animation: jelloOut 0.8s ease-in forwards;
}

/* Animation 10: Swing */
@keyframes swing {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    20% {
        transform: rotate(15deg);
        opacity: 0.4;
    }
    40% {
        transform: rotate(-10deg);
        opacity: 0.6;
    }
    60% {
        transform: rotate(5deg);
        opacity: 0.8;
    }
    80% {
        transform: rotate(-5deg);
        opacity: 0.9;
    }
    100% {
        transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes swingOut {
    0% {
        transform: rotate(0deg);
        opacity: 1;
    }
    20% {
        transform: rotate(15deg);
        opacity: 0.8;
    }
    40% {
        transform: rotate(-10deg);
        opacity: 0.6;
    }
    60% {
        transform: rotate(5deg);
        opacity: 0.4;
    }
    80% {
        transform: rotate(-5deg);
        opacity: 0.2;
    }
    100% {
        transform: rotate(0deg);
        opacity: 0;
    }
}

.toast-animation-10-in {
    animation: swing 0.8s ease-out forwards;
    transform-origin: top center;
}

.toast-animation-10-out {
    animation: swingOut 0.8s ease-in forwards;
    transform-origin: top center;
}

/* Animation for progress bar */
@keyframes progress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

.toast-progress-animate {
    animation: progress 10s linear forwards;
}
.menu-cat-dropdown{
    padding: 15px 0!important;
}
.shop-image{
    height : 350px!important;
}
.shop-image img{
    width: 100%;
    object-fit: fill;
    height: 350px;
}
.shop-modern .shop-footer{
    min-height:90px!important;
}
.tp-product-modal-close-btn{
    color: #666;
    font-size: 16px;
    height: 32px;
    line-height: 12px;
    position: absolute;
    top: 0;
    width: 32px;
    z-index: 1;
    background: transparent;
    border: none;
}
#modalThumbsSwiper {
    height: 100%;
}

@media (max-width: 768px) {
    #modalThumbsSwiper {
        height: auto;
        flex-direction: row;
    }
}
@media (min-width: 768px) {
    .modal-main-swiper {
        margin-bottom: 20px;
    }
}
.modal-thumbs-swiper .swiper-wrapper {
    height: 100%;
}
.modal-thumbs-swiper .swiper-slide {
    height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal-thumbs-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.swiper-slide-thumb-active{
    border: 1px solid #a0d35a;
}
.shop-color li>input[type=radio]+label span {
    border: 1px solid #b7b7b7;
}
.shop-color li input[type=radio]:checked+label span:after {
    position: absolute;
    top: 1px;
    left: 1px;
    color: var(--white);
    height: 28px;
    width: 28px;
    border: 2px solid var(--white);
    border-radius: 100%;
    /* text-align: center; */
    content: "";
    font-weight: 900;
}
.shop-color li input[type=radio]:checked+label span {
    border: 1px solid #6d6d6d;
}
.shop-size li>input[type=radio]+label span {
    height: 37px;
    width: 70px;
    border-radius: 1px;
    font-size: 17px;
}
.shop-size li input[type=radio]:checked+label span:after {
    position: absolute;
    top: -1px;
    left: -1px;
    height: 37px;
    width: 70px;
    border: 1px solid var(--dark-gray);
    border-radius: 1px;
    text-align: center;
    content: "";
}
.shop-size li.disabled-size label {
    position: relative;
    opacity: 0.4;
    pointer-events: none;
}

.shop-size li.disabled-size label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 2px;
    background: red;
    transform: rotate(-20deg);
}
#modalThumbsSwiper {
    height: 400px;
    overflow: hidden;
}

/* Optional: scroll bar if needed */
#modalThumbsSwiper .swiper-wrapper {
    flex-direction: column;
}

#modalThumbsSwiper .swiper-slide {
    height: auto;
}
.round-color-label span {
    height: 25px;
    width: 25px;
    border-radius: 100%;
    margin-right: 6px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #b7b7b7;
}
.price-after-disc{
    color: red!important;
    font-weight: bold;
}
.bold{
    font-weight: bold!important;
}
.product-remove{
    background: transparent;
    border: none;
}
.tp-cart-empty {
    font-weight: 500;
    padding: 10px;
    font-size: 15px;
    background: #F1F3F4 !important;
}
.tp-cart-update-btn {
    font-weight: 500;
    font-size: 16px;
    color: var(--tp-common-black);
    background-color: var(--tp-common-white);
    padding: 9px 29px;
    border: 1px solid rgba(1, 15, 28, 0.1);
}
.add-item-to-wishlist,.remove-item-from-wishlist{
    border: none!important;
}
.add-item-to-wishlist{
    border: 1px solid #e4e4e4 !important;
    background-color: white!important;
}
.shop-sidebar .shop-filter li a .product-cb-checked:after {
    opacity: 1!important;
}
.autocomplete-results{
    background-color: white!important;
    overflow: scroll;
    height: 200px;
}
.search-form-wrapper {
    height: 180vh;
}

element.style {
}
@media (max-width: 575px) {
    .search-form-wrapper .search-form .search-button {
        bottom: 11px;
        font-size: 20px;
    }
}
.search-form-wrapper .search-form .search-button {
    color: var(--dark-gray);
    bottom: 24px;
    position: absolute;
    font-size: 25px;
    right: 0;
    top: -110px;
    bottom: 0 !important;
    line-height: normal;
    outline: 0;
    cursor: pointer;
    z-index: 0;
    margin-right: 0;
    border: none;
    background: 0 0;
}
.labels-wrap{
    position: absolute;
    left: 15px;
    right: auto;
    top: 0;
    color: #ddd;
    display: block;
}
.shop-image .label {
    padding: 3px 8px;
    margin: 4px 0;
    color: var(--white);
    font-size: 9px;
    line-height: 21px;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: 700;
}
.shop-image .label.new {
    background-color: var(--green);
}
.shop-image .label.best {
    background-color: var(--red);
}
.shop-image .label.featured {
    background-color: var(--tropical-blue);
}
.footer-logo{
    max-width: 150px;
}
.bg-transparent{
    background: transparent;
}
.error{
    font-size: 12px;
    color: red;
}
.discount-label-wrap{
    position: absolute;
    right: 15px;
    left: auto;
    top: 0;
    color: #ddd;
    display: block;
}
.shop-image .label.discount {
    background-color: red;
}
.float-wp{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
}

.my-float-wp{
    margin-top:16px;
}
@media only screen and (max-width: 600px) {
    .float-wp{
        position:fixed;
        width:60px;
        height:60px;
        bottom:20px;
        left:20px;
        background-color:#25d366;
        color:#FFF;
        border-radius:50px;
        text-align:center;
        font-size:30px;
        box-shadow: 2px 2px 3px #999;
        z-index:100;
    }
}