body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/


.main-menu {
    position: relative;
    padding: 0 20px;
    z-index: 91;
    background: #f8f8f8;
    color: black;
}

.main-menu-wrapper {
    position: relative;
    display: block;
    height: 90px;
}


.main-menu-wrapper__logo {
    display: flex;
    align-items: center;
}

.main-menu-wrapper__main-menu {
    position: relative;
    display: block;
    float: left;
    padding: 12px 0;
}

.main-menu-wrapper__right {
    position: relative;
    display: flex;
    float: right;
    padding: 15px 0;
    align-items: center;
}


.main-menu-wrapper__search-box-cart-box {
    position: relative;
    display: flex;
    align-items: baseline;
    padding: 9px 0;
}

.main-menu-wrapper__search-box-cart-box:before {
    position: absolute;
    top: -13px;
    bottom: -13px;
    left: -40px;
    content: "";
    background-color: var(--thm-bdr-color);
    width: 1px;
}


.main-menu-wrapper__cart {
    font-size: 24px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin: 0 10px 0 5px;
}


.main-menu-wrapper__search:hover {
    color: var(--thm-extra);
}


.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
    color: #0c0c0c;
    text-decoration: none;
}


.main-menu .main-menu__list > li {
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    text-decoration: none;
}

.main-menu .main-menu__list > li + li {
    margin-left: 25px;
}

.main-menu .main-menu__list > li > a {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--thm-gray);
    position: relative;
    transition: all 500ms ease;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.main-menu .main-menu__list > li > a::before {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 0px;
    background-color: var(--thm-primary);
    position: absolute;
    top: 50%;
    bottom: 0px;
    left: -20px;
    transition: transform 500ms ease;
    transform: scale(0) translateY(-50%);
    z-index: -1;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
    color: var(--thm-black);
    text-shadow: 0 0 1px currentColor;
}

.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before {
    transform: scale(1) translateY(-50%);
}

.main-menu .main-menu__list > li.current > a::before {
    background-color: var(--thm-extra);
}

.main-menu .main-menu__list > li:hover > a::before {
    background-color: var(--thm-extra);
}

.main-menu .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: 500ms ease;
    z-index: 99;
    box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: var(--thm-bdr-radius);
    border-bottom-right-radius: var(--thm-bdr-radius);
}

.main-menu .main-menu__list li ul li:last-child > a {
    border-bottom-left-radius: var(--thm-bdr-radius);
    border-bottom-right-radius: var(--thm-bdr-radius);
}

.main-menu .main-menu__list li:hover > ul {
    opacity: 1;
    visibility: visible;
    height: 300px;
    overflow: auto;
}

.main-menu .main-menu__list li ul li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

.main-menu .main-menu__list li ul li + li {
    border-top: 1px solid RGBA(var(--thm-black), 0.1);
}

.main-menu .main-menu__list li ul li a {
    font-size: 16px;
    line-height: 30px;
    color: rgb(22, 22, 22);
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 500ms;
    background: linear-gradient(
        rgb(255, 255, 255));
}

.main-menu .main-menu__list li ul li:hover > a {
    background: #f78bb8;
    color: #fff;
}

.main-menu .main-menu__list li ul li > ul {
    top: 0;
    left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

.main-menu .main-menu__list li ul li > ul ul {
    display: none;
}


.mobile-nav__buttons {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-black);
    cursor: pointer;
}

.mobile-nav__buttons a + a {
    margin-left: 10px;
}

.mobile-nav__buttons a:hover {
    color: var(--thm-base);
}

.main-menu .mobile-nav__toggler {
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: 500ms;
    margin-right: 20px;
}

.main-menu .mobile-nav__toggler:hover {
    color: white;
}


/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: right center;
    transition: transform 500ms ease-in, opacity 500ms linear,
    visibility 500ms ease-in;
    z-index: 999;

    visibility: hidden;
}

a {
    color: #0a0a0a;
    text-decoration: none;
}

/* Placeholder text color */
.search-input::placeholder {
    color: rgba(26, 25, 25, 0.6);
}

/* Search button styling */
.search-button {
    background-color: transparent;
    border: none;
    outline: none;
    padding: 10px;
    cursor: pointer;
    color: rgb(3, 3, 3);
    font-size: 18px;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0;
    cursor: pointer;
}

#searcher {
    display: none;

}

/* Container for the search field */

/* Styling the search input */
.search-container {
    display: flex;
    align-items: center;
    background: #f5cfcd;
    border-radius: 5px;
    width: 100%;
    color: black;
    height: 45px;
}

.search-input {
    line-height: normal;
    width: 100%;
    flex: 1;
    border: none;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    color: rgb(5, 5, 5);
    background-color: transparent;
}


.mobile-nav__content {
    width: 300px;
    background: linear-gradient(rgb(255, 255, 255));
    z-index: 10;
    color: #0c0c0c;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

.mobile-nav__content .thm-btn {
    padding: 8px 0;
    width: 100%;
    text-align: center;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: rgb(17, 17, 17);
    cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li a {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    color: #1a1919;
    font-size: 13px;
    font-family: var(--thm-font);
    font-weight: 500;
    height: 46px;
    align-items: center;
    transition: 500ms;
    text-decoration: none;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--thm-secondary);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--thm-primary);
    border: none;
    outline: none;
    color: #0e0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: #f4b8d1;
    color: var(--thm-black);
}


.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
    margin-top: 10px;
}

.mobile-nav__social a {
    font-size: 16px;
    color: rgb(17, 17, 17);
    text-decoration: none;
}

.mobile-nav__social a + a {
    margin-left: 10px;
}

.mobile-nav__social a:hover {
    color: #ffffff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: black;
    border: none;
    padding: 0;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50px !important;
    opacity: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.owl-nav .owl-prev {
    left: 20px;
}

.owl-nav .owl-next {
    right: 20px;
}

.owl-dots {
    text-align: center;
    margin-top: 10px;
}

.owl-dot {
    height: 12px;
    width: 12px;
    margin: 5px;
    background-color: #ccc;
    display: inline-block;
    border-radius: 50%;
}

.owl-dot.active {
    background-color: #000;
}

.sectionserviceRow {
    overflow: hidden;
    width: 100%;
}

.serviceRow {
    display: flex;
    width: max-content;
    animation: scroll 50s linear infinite;
}

.serviceItem {
    color: #0e0d0d;
    padding: 10px 20px;
    white-space: nowrap;
    font-size: 1.2em;
    margin-right: 20px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Moves by half the width of the container for a seamless scroll */
    }
}

.serviceItem::before {
    content: "";
    margin-right: 8px;
}

.social-section {
    text-align: center;
    padding: 25px 0;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
}

.social-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    /* Zoom effect on hover */
}

.collectiom-card {
    width: auto;
    border-radius: 8px;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
}

.product-image {
    position: relative;
    padding: 6px;
}

.product-image img {
    max-width: 100%;
    height: 400px;
    border-radius: 4px;
}

.product-details {
    padding: 12px;
    text-align: left;
}

.product-title {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    margin: 0 0 8px;
}

.original-price {
    font-size: 18px;
    color: #000;
    margin: 0;
    font-weight: bold;
}

.add-to-cart {
    width: 100%;
    background-color: #f0b4d5;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 10px;
    border: none;
    border-radius: 0 0 8px 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.add-to-cart:hover {
    background-color: #f57aad;
}

.cart-icon {
    font-size: 16px;
}


/* out collection part css */

.our-collectionsH {
    justify-content: center;
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
    font-size: 38px;
}

/* TOPSELLER PART */
.top-seller h3 {
    justify-content: center;
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
    font-size: 38px;

}

/* MIDBANNER */
.midbanner {
    margin: 0 0 50px 0;
}


/* Discounted-deals */

.Discounted-deals h3 {
    justify-content: center;
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
    font-size: 38px;
}

/* Contact Section */
.contact-section h2 {
    font-weight: bold;
}

.contact-section form .btn {
    background-color: black;
    color: white;
    border-radius: 0;
    text-transform: uppercase;
}

/* Footer Styling */
.footer {
    background-color: #f3aeca;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 1rem;
    cursor: pointer;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul {
    padding-left: 0;
}

.footer .input-group input {
    border-radius: 0;
}

.footer .btn-success {
    border-radius: 0;
    background-color: #2ca74a;
    border-color: #2ca74a;
}

.footer .social-icons .btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.copyright {
    background-color: #f78bb8;
    color: white;
    font-size: 14px;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 1rem;
    cursor: pointer;
}

.toggle-icon {
    font-size: 20px;
    margin-left: 10px;
}

.list-unstyled LI A {
    text-decoration: none;
    color: #fff;
}

/* hero section about page  */

.abouthero {
    background: url('../../../images/banner.jpg') no-repeat center center/cover;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.abouthero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.abouthero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.abouthero-content h1 {
    font-size: 48px;
}

.abouthero-content p {
    font-size: 20px;
}

.about-section {
    padding: 60px 0;
}

.about-section img {
    border-radius: 10px;
}

/* shipping policy  */

.shippinghero {
    background: url('../../../images/delivery.png') no-repeat center center/cover;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.shippinghero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;

}


/* refund policy  */

.refundhero {
    background: url('../../../images/refundexchange.jpeg') no-repeat center center/cover;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.refundhero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;

}

/* privacy page  */

.privacyhero {
    background: url('../../../images/privacypolicy.jpg') no-repeat center center/cover;
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.privacyhero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.privacy-section {
    padding: 20px 20px;
    max-width: 800px;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.privacy-section h1 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #28a745;
}

.privacy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}


@media (min-width: 768px) {
    .toggle-icon {
        display: none;
    }


}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .collection {
        width: 50%;
    }

    .collection a {
        margin: 0;
    }

    .product-card {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 5px;
        text-align: center;
    }

    .product-title {
        font-weight: bold;
        font-size: 12px;
        color: #333;

    }

    .original-price {
        font-size: 20px;
        color: #000;
        margin: 0;
    }

    .add-to-cart {
        width: 100%;
        background-color: #f0b4d5;
        color: #fff;
        font-weight: bold;
        font-size: 11px;
        padding: 10px;
        border: none;
        border-radius: 0 0 8px 8px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    .add-to-cart:hover {
        background-color: #f57aad;
    }

    .cart-icon {
        font-size: 15px;
    }

    .collapse:not(.show) {
        display: none;
    }

    .privacyhero {
        height: 30vh; /* reduce height for mobile */
        background-size: cover;
        background-position: center;
    }

    .privacy-section {
        margin: 0 20px;
        max-width: 800px;
    }

    .shippinghero {

        height: 40vh;

    }

    .refundhero {
        height: 40vh;

    }
}


@media (max-width: 575.98px) {
    body {
        font-size: 14px;
    }

}

@media (min-width: 576px) and (max-width: 767.98px) {
    body {
        font-size: 15px;
    }
}


@media (min-width: 768px) and (max-width: 991.98px) {
    body {
        font-size: 16px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    body {
        font-size: 17px;
    }
}


@media (min-width: 1200px) {
    body {
        font-size: 18px;
    }

    .mobile-nav__buttons {
        display: none;
    }

    .main-menu .mobile-nav__toggler {
        display: none;
    }

    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul {
        display: flex;
    }
}


@media (width < 600px) {
    .main-menu {
        padding: 0px 10px;
    }


    #searcher {
        right: 5px;
    }

    .main-menu-wrapper__search-box-cart-box {
        padding: 17px 0;
    }

    .main-menu .mobile-nav__toggler {
        margin-right: -10px;
    }
}


#searcher {
    top: 20px;
    right: 75px;
}

.side-categories {
    list-style: none;
    padding: 0;
}

.side-categories li {
    margin: 10px 0;
}

.side-categories li a:hover {
    color: deeppink;
}

@keyframes jiggle {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-3px);
    }
    40% {
        transform: translateX(3px);
    }
    60% {
        transform: translateX(-2px);
    }
    80% {
        transform: translateX(2px);
    }
    100% {
        transform: translateX(0);
    }
}

.cart-animation {
    animation: jiggle 1.5s ease-in-out infinite;
}

.cart-count {
    position: absolute;
    top: 2px;
    left: 20px;
}

.collection img {
    width: 100%;
    height: 300px;
    margin-bottom: 10px;
    border-radius: 8px
}
.y-vid{
    height: 400px;
}
.yt-icon-shape{
    display: none !important;
}
@media (max-width: 450px) {
    .collection img {
        height: 100px;
    }
    .product-image img{
        height: 200px;
    }
    .change-on-hover{
        height: 200px !important;
    }
}
@media (max-width: 1200px) {
    #searcher{
        right:140px
    }
}
@media (max-width: 670px) {
    #searcher {
        right:0;
        top: 90px;
        width: 100%;
    }
    .y-vid{
        height: 200px;
    }
    .cart__img{
        width: 45px !important;
        margin-left: 4px !important;
    }
    .product-name{
        font-size: 12px !important;
    }
    .qtybtn{
        width: 20px !important;
    }
    .quantity-input {
        width: 35px !important;
    }
}
.qtybtn{
    background: #f3aeca;
    border: none;
}
.quantity-input{
    width: 35px;
    padding: 0 10px;
    font-size: 16px;
    border-radius: 6px;
}

.change-on-hover {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.change-on-hover img {
    position: absolute;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}
.img-hover {
    opacity: 0;
    pointer-events: none;
}
.wa_float_btn_xyz {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25D366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

.wa_float_btn_xyz:hover {
    transform: scale(1.1);
}

.wa_float_btn_xyz img {
    width: 32px;
    height: 32px;
    display: block;
}
