@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}


:root {
    --primary-color: #EE276A;
    --secodry-color: #2c0251;
}

html,
body {
    margin: 0px;
    overflow-x: hidden;
}

button:focus-visible {
    outline: none !important;
}

a {
    text-decoration: none;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    color: #151515;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}

.row {
    margin: 0px;
}

a {
    color: #EE276A;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

a:hover {
    color: #000000;
}

input:focus,
textarea:focus,
button:focus {
    border: 0;
    outline: 0;
    box-shadow: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1430px;
    width: 100%;
}

ul {
    margin: 0px;
    padding: 0;
}

ul li {
    margin: 0px 0;
    list-style: none;
}

/* ::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #EE276A;
}

::-webkit-scrollbar-thumb {
    background: #000;
}

::-webkit-scrollbar-thumb:hover {
    background: #EE276A;
} */

a {
    transition: 0.4s;
}

p {
    color: var(--Black--Text, #000);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    margin: 0;
}


/* .product-loader {
    width: 30px;
    position: absolute;
    right: 15px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid var(--primary-color);
    border-right-color: var(--secodry-color);
    animation: l24 1s infinite linear;
} */

#searchResults p {
    padding: 5px 25px;
}

.remove-item .search-loader {
    right: 17px;
}

.search-loader {
    position: absolute;
    right: 15px;
    aspect-ratio: 1;
    height: 25px;
    border: 5px solid var(--primary-color);
    border-bottom-color: var(--secodry-color);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.product-loader:before,
.product-loader:after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: inherit;
    animation: inherit;
    animation-duration: 2s;
}

.product-loader:after {
    animation-duration: 4s;
}

@keyframes l24 {
    100% {
        transform: rotate(1turn)
    }
}

/* .nav-wrp ul.sub-menu {
    display: none;
} */

/* li.menu-item-has-children:hover ul.sub-menu {
    display: block;
} */

.menu-main-menu-container ul li.menu-item-has-children {
    position: relative;
}

.menu-main-menu-container ul li.menu-item-has-children>span {
    position: absolute;
    top: 0;
    right: 0;
}

.menu-main-menu-container ul li.menu-item-has-children>span:after {
    content: '\276E';
    transform: rotate(-90deg);
    position: absolute;
    right: 0px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.menu-main-menu-container ul li.menu-item-has-children>span.active:after {
    transform: rotate(90deg);
}

.menu-main-menu-container ul ul.sub-menu {
    position: absolute;
    top: 20px;
    left: 0;
    padding: 0;
    width: 350px;
    list-style: none;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translate(0%, 50%);
    transition: all 0.3s ease-in-out;
    display: block;
}

.menu-main-menu-container ul li.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(0%, 0%);
}

.menu-main-menu-container ul li ul.sub-menu a {
    color: #000;
    font-size: 14px;
    line-height: 1.2;
}

.menu-main-menu-container ul ul.sub-menu>li {
    padding: 7px 15px;
    border-bottom: 1px solid #dcdcdc;
    font-size: 14px;
}

/* Overlay full screen */
#age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    animation: fadeIn 0.5s ease;
}

/* Hide when dismissed */
#age-overlay.hidden {
    display: none;
}

/* Modal box */
.age-modal {
    background: #fff;
    color: #222;
    padding: 2rem;
    width: 90%;
    max-width: 525px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
}

.age-modal h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #111;
}

.age-modal p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Buttons */
.age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-actions button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

#age-yes {
    background: #4CAF50;
    color: #fff;
}

#age-yes:hover {
    background: #43a047;
    transform: scale(1.05);
}

#age-no {
    background: #e53935;
    color: #fff;
}

#age-no:hover {
    background: #d32f2f;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width:991px) {
    .menu-main-menu-container ul ul.sub-menu {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: translate(0%, 0%);
        width: 100%;
        margin-top: 10px;
        display: none;
        transition: initial;
        background-color: transparent;
        margin: 0 0 20px 0;
    }

    .menu-main-menu-container ul ul.sub-menu li {
        padding: 10px !important;
    }

    .menu-main-menu-container ul ul.sub-menu li a {
        line-height: 0 !important;
    }

    #menu li {
        font-size: inherit !important;
    }

    .menu-main-menu-container ul li.menu-item-has-children>span:after {
        color: #000000;
    }
}
