* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}

:root {
    --bs-edu-primary-color: #72054c;
    --bs-edu-primary-light-color: #96116a;
    --bs-edu-secondary-color: #ffa500;
    --bs-edu-secondary-dark-color: #e09406;
    --bs-edu-white-color: #fff;
    --bs-edu-black-color: #000;
    --bs-edu-green-color: #03ac13;
    --bs-edu-light-color: #f9f9f9;
    --bs-edu-light2-color: #ededed;
    --bs-edu-gold-color: #FBCD0A;
    --bs-edu-lightrating-color: #d5d5d5;
    --bs-edu-border-color: #d3d3d3;
    --bs-edu-text-color: #52556d;
}

h2 {
    font-size: 1.9rem;
}

.disc-style{
    list-style: disc;
}

/* colors */
.primary-color {
    color: var(--bs-edu-primary-color);
}
.secondary-color {
    color: var(--bs-edu-secondary-color);
}
.white-color {
    color: var(--bs-edu-white-color);
}
.black-color {
    color: var(--bs-edu-black-color);
}
.gold-color {
    color: var(--bs-edu-gold-color);
}
.gold-backg{
    background-color: var(--bs-edu-gold-color)
}
.green-color {
    color: var(--bs-edu-green-color);
}
.light2-color {
    color: var(--bs-edu-light2-color);
}
.lightrating-color {
    color: var(--bs-edu-lightrating-color);
}
.primary-color-hover:hover {
    color: var(--bs-edu-primary-light-color);
}
.text-color {
    color: var(--bs-edu-text-color);
}
.light-backg {
    background-color: var(--bs-edu-light-color);
}
.light2-backg {
    background-color: var(--bs-edu-light2-color);
}
p {
    line-height: 25px;
    /* color: var(--bs-edu-text-color); */
}
.text-justify {
    text-align: justify;
}
ul {
    list-style: none;
    margin: 0;
}
a {
    text-decoration: none;
}
button {
    border: none;
    background: transparent;
}

.widthsome {
    width: 85%;
}
.textarea-height {
    height: 100px !important;
}

/* box-shadow */
.box-shadow {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.edu-shadow {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.img-size {
    width: 100%;
    height: auto;
}

.form-check-input:checked {
    background-color: var(--bs-edu-primary-color);
    border-color: var(--bs-edu-primary-color);
}
.form-check-input:focus {
    border-color:none;
    outline: 0;
    box-shadow: none;
}
/* btn */
.main-btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 10rem;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.15rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.main-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-edu-primary-light-color);
    border-radius: 10rem;
    z-index: -2;
}

.main-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bs-edu-primary-color);
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
}

.main-btn:hover {
    color: #fff;
}

.main-btn:hover::before {
    width: 100%;
}

.secondary-btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 10rem;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.15rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.secondary-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-edu-secondary-color);
    border-radius: 10rem;
    z-index: -2;
}

.secondary-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bs-edu-secondary-dark-color);
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
}

.secondary-btn:hover {
    color: #fff;
}

.secondary-btn:hover::before {
    width: 100%;
}

.btn-grey-outline {
    border: solid 2px var(--bs-edu-border-color);
    font-size: 1.215rem;
    background-color: transparent;
}
.btn-grey-outline:hover {
    border: solid 2px var(--bs-edu-border-color);
    font-size: 1.215rem;
    background-color: var(--bs-edu-border-color);
}

/* hover */
.primary-text-hover {
    color: var(--bs-edu-black-color);
}
.primary-text-hover:hover {
    color: var(--bs-edu-primary-light-color);
}

/* quantity */
.quantity {
    display: flex;
    border: 2px solid var(--bs-edu-border-color);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 112px;
}

.quantity button {
    background-color: var(--bs-edu-light2-color);
    color: var(--bs-edu-black-color);
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    width: 35px;
    height: auto;
    text-align: center;
    transition: background-color 0.2s;
}

.quantity button:hover {
    background-color: var(--bs-edu-border-color);
}

.input-box {
    width: 40px;
    text-align: center;
    border: none;
    padding: 8px 10px;
    font-size: 1rem;
    outline: none;
}

/* Hide the number input spin buttons */
.input-box::-webkit-inner-spin-button,
.input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-box[type="number"] {
    -moz-appearance: textfield;
}


.sale-strip-container {
    width: 100%;
    overflow: hidden;
    background-color: var(--bs-edu-primary-light-color);
    color: white;
    text-align: center;
    padding: 8px;
    position: relative;
    height: 40px;
}
/* 
.sale-strip {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
} */

/* .sale-strip:nth-child(1) { animation: rotateText 12s infinite; animation-delay: 0s; }
.sale-strip:nth-child(2) { animation: rotateText 12s infinite; animation-delay: 4s; }
.sale-strip:nth-child(3) { animation: rotateText 12s infinite; animation-delay: 8s; }

@keyframes rotateText {
    0% { opacity: 0; }
    10% { opacity: 1; }
    30% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
} */


/* header */
.v-center {
    justify-content: space-between;
}
.header {
    position: sticky;
    top: 0;
    z-index: 700;
    background-color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06); /* Optional shadow */
    padding: 15px;
    transition: all 0.3s ease;
}
.header .item-left {
    flex: 0 0 11%;
}
.logo-rdbday {
    width: auto;
    height: 10vh;
}
.header .item-center {
    flex: 0 0 70%;
}
.header .item-right {
    flex: 0 0 16%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.header .item-right a {
    text-decoration: none;
    font-size: 1rem;
    color: #555555;
    display: inline-block;
    margin-left: 10px;
    transition: color 0.3s ease;
}
.header .menu > ul > li {
    display: inline-block;
    line-height: 50px;
    margin-left: 25px;
}
.header .menu > ul > li > a {
    font-size: 1.03rem;
    font-weight: 600;
    color: #000000;
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s ease;
}
.header .menu > ul > li > a:hover {
    font-size: 1.03rem;
}
.header .menu > ul > li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: #ffffff;
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    transition: all 0.5s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
}
@media (min-width: 992px) {
    .header .menu > ul > li.menu-item-has-children:hover .sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }
}
.header .menu > ul > li .sub-menu > ul > li {
    line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    color: #555555;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu {
    min-width: 280px;
    max-width: 350px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
    line-height: 1;
    display: block;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    padding: 10px 0;
    display: inline-block;
    font-size: 15px;
    color: #555555;
    transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 {
    max-width: 1100px;
    width: 100%;
    padding: 20px 20px;
    text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
    flex: 0 0 25%;
    padding: 0 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title {
    font-size: 16px;
    color: #ea4636;
    font-weight: 500;
    line-height: 1;
    padding: 10px 0;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
    text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    margin-top: 10px;
    height: 300px;
    object-fit: cover;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a {
    color: var(--bs-edu-primary-light-color);
}
.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}
.nav-cate-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}
.item-right i {
    font-size: 1.2rem;
}
.menu-main li a:hover{
color: var(--bs-edu-primary-color);
font-weight: 500;
}

/* search-bar */
.search-bar {
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
    width: 70%;
    height: 50%;
    background-color: var(--bs-edu-white-color);
}

.search-bar input {
    border: none;
    outline: none;
    flex: 1;
}

.search-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.clear-icon {
    display: none;
    align-items: center;
    cursor: pointer;
}

.search-bar input:not(:placeholder-shown) + .clear-icon {
    display: flex;
}

.search-bar input:not(:placeholder-shown) ~ .search-icon {
    display: none;
}
.search-clear {
    color: var(--bs-edu-primary-light-color);
}

/* profile dropdown */
.another-dropdown {
    position: relative;
    list-style: none;
}

.another-dropdown .sub-menu {
    position: absolute;
    left: -80px;
    z-index: 1500;
    background-color: var(--bs-edu-white-color);
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    transition: margin-top 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
    opacity: 0;
    visibility: hidden;
    min-width: 165px;
    max-width: 245px;
    margin-top: 20px;
}

.another-dropdown:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
}

.another-dropdown .sub-menu ul {
    padding: 0;
    list-style-type: none;
}

.another-dropdown .sub-menu ul li {
    line-height: 1;
}
.another-dropdown .sub-menu ul li a {
    display: inline-block;
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: capitalize;
}
.another-dropdown .sub-menu ul li a:hover {
    color: var(--bs-edu-primary-light-color);
}

.profiles-dropdown {
    width: 100%;
    padding: 0.7rem 0rem;
}
.profile-logout {
    background-color: var(--bs-edu-primary-light-color);
    color: var(--bs-edu-white-color) !important;
}
.profile-logout:hover {
    background-color: var(--bs-edu-primary-color);
    color: var(--bs-edu-white-color) !important;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

/* notification */
.notification-container {
    display: inline-block;
    position: relative;
    color: #555555;
    cursor: pointer;
}
.notification-dropdown .dropdown-item {
    padding: 0.5rem 0rem;
    color: var(--bs-hsn-black-color);
}
.notification-container:hover .notification-dropdown {
    display: block;
}
.notification-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 260px;
    max-width: 350px;
    transform: translateX(-50%);
    display: none;
    z-index: 500;
    background-color: var(--bs-edu-white-color);
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    padding: 1rem 0.5rem;
    text-align: center;
    border-radius: 5px;
    z-index: 3000;
}
.view-all-btn:hover {
    background-color: var(--bs-edu-primary-color);
    color: var(--bs-edu-white-color) !important;
}
.circle {
    display: inline-block;
    background-color: var(--bs-edu-primary-light-color);
    border-radius: 50%;
    height: 18px;
    width: 18px;
    position: absolute;
    top: -11px;
    left: 8px;
}
.circle-inner {
    color: var(--bs-edu-white-color);
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    font-size: 0.7rem;
    height: 18px;
    width: 18px;
    line-height: 18px;
}

/*responsive*/
@media (max-width: 991px) {
    .another-dropdown {
        position: relative;
    }

    .another-dropdown .sub-menu {
        position: absolute;
        left: -55px;
    }

    .another-dropdown:hover .sub-menu {
        visibility: visible;
        opacity: 1;
    }
    .header {
        height: 21vh;
        padding: 10px;
    }
    .search-bar {
        position: absolute;
        width: 90%;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10%;
        z-index: 1000;
    }
    .header .item-center {
        order: 3;
        flex: 0 0 100%;
    }
    .v-center {
        justify-content: space-between;
    }
    .header .mobile-menu-trigger {
        display: flex;
        height: 30px;
        width: 30px;
        margin-left: 20px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }
    .header .mobile-menu-trigger span {
        display: block;
        height: 2px;
        background-color: #333333;
        width: 24px;
        position: relative;
    }
    .header .mobile-menu-trigger span:before,
    .header .mobile-menu-trigger span:after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #333333;
    }
    .header .mobile-menu-trigger span:before {
        top: -6px;
    }
    .header .mobile-menu-trigger span:after {
        top: 6px;
    }
    .header .item-right {
        align-items: center;
    }

    .header .menu {
        position: fixed;
        width: 320px;
        background-color: #ffffff;
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }
    .header .menu.active {
        transform: translate(0%);
    }
    .header .menu > ul > li {
        line-height: 1;
        margin: 0;
        display: block;
    }
    .header .menu > ul > li > a {
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .header .menu > ul > li > a i {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
    }
    .header .menu .mobile-menu-head {
        display: flex;
        height: 50px;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: #ffffff;
        top: 0;
    }
    .header .menu .mobile-menu-head .go-back {
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 16px;
        display: none;
    }
    .header .menu .mobile-menu-head.active .go-back {
        display: block;
    }
    .header .menu .mobile-menu-head .current-menu-title {
        font-size: 15px;
        font-weight: 500;
        color: var(--bs-edu-primary-light-color);
    }
    .header .menu .mobile-menu-head .mobile-menu-close {
        height: 50px;
        width: 50px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 25px;
    }
    .header .menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .header .menu > ul > li .sub-menu.mega-menu,
    .header .menu > ul > li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }
    .header .menu > ul > li .sub-menu.active {
        display: block;
    }
    @keyframes slideLeft {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }
        100% {
            opacity: 1;
            transform: translateX(0%);
        }
    }
    @keyframes slideRight {
        0% {
            opacity: 1;
            transform: translateX(0%);
        }
        100% {
            opacity: 0;
            transform: translateX(100%);
        }
    }
    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
        margin-top: 0;
    }
    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
        margin-bottom: 20px;
    }
    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title {
        margin-bottom: 0px;
    }
    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
        flex: 0 0 100%;
        padding: 0px;
    }
    .header .menu > ul > li .sub-menu > ul > li > a,
    .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
        display: block;
    }
    .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
        margin-bottom: 15px;
    }
    .menu-overlay {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease;
    }
    .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }
}

/* footer */
.footer {
    background-image: url('/uploads/Footer-bg4_01JKDM962TNW3V5TXSPQZQ1E6K.webp');
    width: 100%;
    background-size: cover;
}
.footer ul li:not(:last-child) {
    margin-bottom: 10px;
}
.footer-contact a {
    color: #fff;
}
.footer-contact a:hover {
    color: var(--bs-edu-black-color);
}
.footer ul li a {
    font-size: 17px;
    text-decoration: none;
    font-weight: 300;
    display: block;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}
.footer h5, h6{
    color: white;
}
/* .footer ul li a:hover {
    color: var(--bs-edu-black-color);
} */
.footer .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(1, 1, 1, 0.5);
    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: white;
    transition: all 0.5s ease;
}
.footer .social-links a {
    color:white;
}
.footer .social-links a:hover {
    color: var(--bs-edu-white-color);
    background-color: var(--bs-edu-primary-light-color);
}
.footer-end {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-contact h6 {
    font-size: 1.125rem;
    font-weight: 400 !important;
}
.form-control:focus {
    border: solid 2px;
    border-color: var(--bs-edu-primary-light-color);
    outline: 0;
    box-shadow: none !important;
}

/* otp */
.otp-backg{
    padding: 5rem 0rem;
}
.otp-card{
    width: 450px;
}

@media (max-width: 767px) {
    .widthsome {
        width: 90%;
    }
    h2 {
        font-size: 1.6rem;
    }
    p {
        font-size: 16.5px;
    }
    .footer-end {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .sale-strip-container {
        min-height: 45px; 
    }
}
