.bg-theme {
    background-color: #ff4f9a;
}
.color--theme-text {
    color: #ff4f9a;
}
.border--light-pink {
    border: 1px solid #ffa4cb;
}
.fs-medium {
    font-size: medium;
}
.fs-large {
    font-size: large;
}
.w-full {
    width: 100%;
}
.fw-600 {
    font-weight: 600;
}
.pl-10 {
    padding-left: 10px;
}
.ml-20 {
    margin-left: 20px
}
.ml-3 {
    margin-left: 13px;
}

.lpsc-8 {
    letter-spacing: 0.08rem;
}

.fs-small {
    font-size: small;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-100 {
    margin-bottom: 100px;
}

.w-100 {
    width: 100px;
}

.w-200 {
    width: 200px;
}

.w-300 {
    width: 300px;
}

.w-400 {
    width: 400px;
}

.w-500 {
    width: 500px;
}

.c-red {
    color: red;
}

.top-announcement {
    font-size: large;
    font-weight: 500;
}
.oneline {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.twoline {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.threeline {
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fourline {
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fiveline {
    display: -webkit-box !important;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.image-login {
    display: block;
}

.image-register {
    display: block;
}

.image-login {
    /* height: 510px; */
    width: 100%;
}

.image-register {
    /* height: 510px; */
    width: 100%;
}

.logo-desktop {
    width: 300px;
}

.customer-register-img {
    height: 280px;
}

.fa-circle-user {
    font-size: xx-large;
}

.header__account--items {
    position: relative;
    /* Makes the dropdown menu relative to this element */
    padding: 1.2rem 0;
}

.header__account--items .dropdown-menu {
    display: none;
    /* Hide dropdown by default */
    position: absolute;
    top: 100%;
    /* Position dropdown below the parent */
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    /* Optional: Set a fixed width */
}

.header__account--items .dropdown-menu li {
    padding: 10px;
    text-align: left;
}

.header__account--items .dropdown-menu li a {
    text-decoration: none;
    color: #333;
    display: block;
    font-size: medium;
}

.header__account--items .dropdown-menu li:hover {
    background-color: #f4f4f4;
}

.header__account--items:hover .dropdown-menu {
    display: block;
    /* Show dropdown when parent is hovered */
    /* margin-top: 10px; */
}

.shop__collection--img {
    margin: 0 auto 1.2rem;
    height: 140px;
    object-fit: cover;
}

.category-img-circle {
    width: 160px;
    height: 160px !important;
    border-radius: 50%;
    border: 2px solid #ccc;
    object-fit: cover;
}

.bg-transparent--lightorange {
    background-color: #ffecd770;
}

.bg-red {
    background-color: red;
}

.color--green {
    color: green;
}

.background-none {
    background-color: none !important;
}

.float-right {
    float: right;
}

.style--disc--ml-40 {
    list-style: disc;
    margin-left: 40px;
}

.product__badge-empty--bg {
    width: 6rem;
    height: 1.7rem;
    font-size: 1.2rem;
    line-height: 2.1rem;
    background: none;
    color: var(--text-white-color);
    font-family: var(--inter-fonts);
    position: absolute;
    top: 1.5rem;
    left: 1.2rem;
    text-align: center;
    border-radius: .4rem;
    font-weight: 600;
}

.account__login--input[readonly] {
    background: #f1f1f1;
}

.color-list input[type=radio]+label {
    width: 30px;
    height: 30px;
    border-radius: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.color-list input[type=radio]+label.active {
    border: 3px solid #000;
    transform: scale(1.3);
}

.color-list input[type=radio]+label:hover {
    transform: scale(1.3);
}

.feature__icon img {
    width: 45px;
}

.btn-primary--nav {
    background-color: #ff4081;
    line-height: 3rem;
    border-radius: 3px;
    font-size: x-small
}

.btn-secondary--nav {
    background-color: rgb(55, 55, 55);
    line-height: 3rem;
    border-radius: 3px;
    font-size: x-small
}

.text-btn-nav {
    padding: 0 15px 0;
    color: white;
}

.border-none {
    border: 0;
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
        /* box-shadow: 0 0 0 0 rgba(0, 128, 0, 0.7); */
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 10px 10px rgba(0, 128, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 128, 0, 0);
    }
}

.live-chat {
    bottom: 18%;
    left: 14px;
    z-index: 999;
    position: fixed;
    border-radius: 50%;
    padding: 0;
    animation: ripple 2s linear infinite;
    /* Ensure the keyframes for ripple are also defined */
}

.live-chat a img {
    width: 45px;
}

.pulse-animation {
    animation: pulseAnimation 1s infinite;
    /* Applies the pulse animation */
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.swiper-conaitner-desktop {
    border-top: 1px solid #fed5e7;
    display: block;
}

.swiper-conaitner-mobile {
    display: none;
}

.old__price {
    position: relative;
    color: #999;
    font-size: 14px;
}

.old__price::after {
    content: '';
    position: absolute;
    height: 1px;
    background-color: #ff4081;
    width: 100%;
    top: 30%;
    left: 0px;
    transform: rotate(-12deg);
}

.discount-perc {
    color: #ff4081;
    font-weight: bold;
    margin-left: 10px
}

.product-sku {
    margin-top: 12px;
    margin-bottom: 12px;
}

.section--padding--5 {
    padding-top: 40px;
    padding-bottom: 20px;
}

.blog-search-desktopview {
    display: block
}

.blog-search-mobileview {
    display: none !important;
}

#product-color-variant {
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 12px;
}

.tab-responsive {
    flex-direction: column;
}

label {
    color: #606060;
    letter-spacing: 1.4px;
    font-size: small;
    font-weight: 700;
}

.footer-features {
    background-color: #3d1417f5;
}

ul.ckeditor:last-child {
    margin-bottom: 0;
    padding-left: 25px;
}

.ckeditor li {
    list-style: inherit;
    line-height: 2.6rem;
    margin-left: 25px
}

.oops-img-center {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.oops-img-responsive {
    width: 50%;
    margin-top: 15px;
}
.wishlist-svg {
    width: 18px;
    height: 18px;
}
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: inline-block;
}
.wishlist-container {
    display: flex;
    align-items: baseline;
    gap: 10px;
    min-width: 50px; 
    min-height: 50px;
}

.wishlist-container svg {
    width: 25px; 
    height: 25px;
    stroke-width: 2;
}
.color--green {
    color: green;
}
.color--red {
    color: red;
}
.count {
    color: #686868;
    font-size: x-small;
}
.text-align-center {
    text-align: center;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.text-title-line {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
input[name="coupon_code"] {
    text-transform: uppercase;
    border: 1px solid #ffc0cb;
    border-radius: 5px;
    font-size: 1.2rem;
    width: 170px;
}
.product__card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product__card--content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product__card--title {
    min-height: 50px; 
}

.product__card--price {
    margin-top: auto;
}
@media screen and (max-width:1440px) {
    .category-img-circle {
        width: 130px;
        height: 130px !important;
    }
}

@media screen and (max-width:1024px) {
    .product__card {
        border-radius: 5px;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: var(--body-background-color);
    }

    .logo-desktop {
        width: 200px;
    }
}

@media screen and (max-width:786px) {
    .category-img-circle {
        width: 130px;
        height: 130px !important;
        border-radius: 50%;
        border: 2px solid #ccc;
        object-fit: cover;
    }

    .product__card {
        border-radius: 5px;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: var(--body-background-color);
    }

    .product__badge {
        width: 5rem;
        height: 1.7rem;
        font-size: 1rem;
        line-height: 2.1rem;
        background: var(--secondary-color);
        color: var(--text-white-color);
        font-family: var(--inter-fonts);
        position: absolute;
        top: .8rem;
        left: 0.5rem;
        text-align: center;
        border-radius: .4rem;
        font-weight: 600;
    }

    .product__badge-empty--bg {
        width: 5rem;
        height: 1.7rem;
        font-size: 1rem;
        line-height: 2.1rem;
        background: none;
        color: var(--text-white-color);
        font-family: var(--inter-fonts);
        position: absolute;
        top: 0.8rem;
        left: 0.3rem;
        text-align: center;
        border-radius: .4rem;
        font-weight: 600;
    }

    .product__card--thumbnail__link {
        position: relative;
        padding: 25px
    }

    .product__secondary--img {
        padding: 25px;
    }

    .blog-search-desktopview {
        display: none !important;
    }

    .blog-search-mobileview {
        display: block !important;
    }

    .tab-responsive {
        flex-direction: row;
        width: 100%;
    }

    .newsletter__subscribe--input {
        padding: 0px 120px 0 1.5rem;
    }

    .oops-img-responsive {
        width: 70%;
        margin-top: 10px;
    }

}

@media (275px <=width <=480px) {
    .image-login {
        display: none;
    }

    .image-register {
        display: none;
    }

    .section--padding {
        padding-top: 0;
        padding-bottom: 2rem;
    }

    .account__login {
        background: var(--body-background-color);
        padding: 3rem 1.5rem;
        border-radius: 1rem;
    }

    .login__remember--label {
        color: var(--primary-color);
        font-size: 1.3rem;
        font-weight: 600;
        margin-top: 5px;
    }

    .mt-mobileview-50 {
        margin-top: 50px;
    }

    .category-img-circle {
        width: 100px;
        height: 100px !important;
        border-radius: 50%;
        border: 2px solid #ccc;
        object-fit: cover;
    }

    .shop__collection--img {
        margin: 0 auto 1.2rem;
        height: 100px;
        object-fit: cover;
    }

    .pass-already-change {
        padding: 20px
    }

    .swiper-conaitner-desktop {
        display: none;
    }

    .swiper-conaitner-mobile {
        border-top: 1px solid #fed5e7;
        display: block;
    }

    .product__card {
        border-radius: 5px;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: var(--body-background-color);
    }

    .product__badge {
        width: 5rem;
        height: 1.7rem;
        font-size: 1rem;
        line-height: 2.1rem;
        background: var(--secondary-color);
        color: var(--text-white-color);
        font-family: var(--inter-fonts);
        position: absolute;
        top: .8rem;
        left: 0.2rem;
        text-align: center;
        border-radius: .4rem;
        font-weight: 600;
    }

    .product__badge-empty--bg {
        width: 5rem;
        height: 1.7rem;
        font-size: 1rem;
        line-height: 2.1rem;
        background: none;
        color: var(--text-white-color);
        font-family: var(--inter-fonts);
        position: absolute;
        top: 0.8rem;
        left: 0.2rem;
        text-align: center;
        border-radius: .4rem;
        font-weight: 600;
    }

    .product__card--thumbnail__link {
        position: relative;
        /* border: 3.5px double #ff4f9a54; */
    }

    .current__price {
        color: var(--hover-color);
        font-weight: 600;
        line-height: 1.8rem;
        font-family: var(--inter-fonts);
        font-size: 1.4rem;
    }

    .old__price {
        position: relative;
        color: #999;
        font-size: 13px;
    }

    .product__card--content {
        position: relative;
        padding: 1rem 0.5rem 1.5rem;
    }

    .style--disc--ml-40 {
        list-style: disc;
        margin-left: 25px;
        line-height: 2rem;
    }

    .newsletter__subscribe--input {
        padding: 0px 90px 0 1.5rem;
    }

    .account__login--forgot {
        font-size: 1.2rem;
    }

    .feature__icon img {
        width: 35px;
    }

    .oops-img-responsive {
        width: 100%;
    }
    .wishlist-svg {
        width: 13px;
        height: 13px;
    }
    .wishlist-container svg {
        width: 18px;
        height: 18px;
    }
    .wishlist--items {
        border: 1px solid #ffbfbf;
        padding: 10px;
        margin: 30px 0;
    }
    .section__heading--maintitle {
        font-size: x-large;
    }
    .offcanvas__sticky--toolbar__icon {
        width: 3rem;
        height: 3rem;
    }
    .counterup__banner--inner {
        flex-wrap: nowrap;
        overflow: scroll;
        padding: 40px 0  30px;
        gap: 4.5rem;
    }
    .sm-mt-2 {
        margin-top: 20px;
    }
    .counterup__items {
        min-width: fit-content;
    }
    .product__card--title {
        margin-bottom: 0;
    }
    .row-padd>* {
        padding-right: 0.2rem !important;
        padding-left: 0.2rem !important;
    }
    .container-set {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .product__media--preview__items--img {
        /* max-height: 290px; */
    }
    .product__card--title a {
        max-width: 210px;
    }
}