.toast-message {
    color: #000 !important;
    /* Black text */
}

/* Customize background color for different types */
.toast-success {
    background-color: #d4edda !important;
    /* Light green */
}

.toast-error {
    background-color: #f8d7da !important;
    /* Light red */
}

.toast-warning {
    background-color: #fff3cd !important;
    /* Light yellow */
}

.toast-info {
    background-color: #cce5ff !important;
    /* Light blue */
}

.login .box .form .input-group {
    border-radius: 8px !important;
    background: #f8f8f8 !important;
    padding: 14px 20px !important;
    margin-bottom: 10px !important;
}

.product-detail-happiness .text-cont ul li {
    max-width: unset;
}

.product-card .img-cont {
    overflow: hidden;
}

.product-card img {
    transition: 0.5s;
}

.product-card:hover img {
    transform: scale(1.1);

}



.frequency-card {
    perspective: 1000px;
    position: relative;
    color: white;
    cursor: pointer;
}



.frequency-card-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.frequency-card:hover .frequency-card-inner {
    transform: rotateY(180deg);
}


.frequency-card-front,
.frequency-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    padding: 0.75rem;

}

.frequency-card-back {
    transform: rotateY(180deg);
    background-color: #3178F6;
}

.frequency-card-back .text-cont {
    text-align: left !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding: 1.5rem !important;
}

.frequency-card-back h3 {
    font-size: 20px !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    text-align: left !important;
    line-height: 1.2 !important;
    text-transform: uppercase;
    color: #fff !important;
}

.frequency-card-back p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-align: left !important;
    color: #fff !important;
    margin: 0 !important;
}

/* Featured Product Slider Text Shadow for Mobile */
@media (max-width: 575px) {
    .featured-product-slider .text-content {
        text-shadow: 0px 0px 5px rgba(0, 0, 0);
        bottom: 25px !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        width: 100% !important;
        left: 0 !important;
    }

    .featured-product-slider .text-content .left,
    .featured-product-slider .text-content .right {
        font-size: 11px !important;
        line-height: 20px !important;
        display: inline-block !important;
        white-space: nowrap !important;
    }
}