:root {
    --blue: #117aa6;

    --blue-light: #eaf8fd;

    --pink: #de107b;

    --navy: #020619;

    --text: #101820;
    --gray: #666;
    --border: #dedede;

    --container: 1160px;

    --font-primary: 'Poppins', sans-serif;
    --font-roboto: 'Roboto', sans-serif;

}


/* =========================================================
   RESET
========================================================= */

.header,
.header *,
.mobile-menu,
.mobile-menu *,
.mobile-overlay {
    box-sizing: border-box;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: relative;
    width: 100%;
    height: 84px;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    z-index: 99;

    transition:
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.header.scrolled {
    position: sticky;
    top: 0;

    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.07);
}


.header-inner {
    width: min(1440px, calc(100% - 80px));
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 35px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;

    flex: 0 0 auto;

    text-decoration: none;
}


.logo img {
    display: block;
    width: 175px;
    height: auto;
    object-fit: contain;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.nav {
    height: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}


.nav-link {
    height: 100%;

    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: #111111;

    text-decoration: none;

    white-space: nowrap;

    font-size: 14px;
    font-weight: 500;

    transition: color 0.2s ease;
}


.nav-link:hover {
    color: #777777;
}


.nav-link i {
    font-size: 9px;

    transition:
        transform 0.25s ease;
}


.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}


.nav-item {
    height: 100%;
    position: static;

    display: flex;
    align-items: center;
}


/* =========================================================
   MEGA MENU
========================================================= */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: #ffffff;

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 9999;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}


/* =========================================================
   MEGA INNER
========================================================= */

.mega-menu-inner {
    width: 980px;
    max-width: calc(100% - 40px);

    min-height: 360px;

    margin: 0 auto;
    padding: 42px 0;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 60px;
}

/* =========================================================
   MEGA LINKS
========================================================= */

.mega-links {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 45px;
}


.mega-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.mega-column h4 {
    margin: 0 0 20px;

    color: #111111;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.mega-column a {
    display: block;

    margin-bottom: 12px;

    color: #666666;

    text-decoration: none;

    font-size: 14px;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}


.mega-column a:hover {
    color: #111111;

    padding-left: 5px;
}


/* =========================================================
   MEGA IMAGE
========================================================= */

.mega-image {
    position: relative;

    min-height: 275px;

    overflow: hidden;

    display: block;

    text-decoration: none;

    background: #eeeeee;
}


.mega-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.mega-image:hover img {
    transform: scale(1.05);
}


.mega-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.05));
}


.mega-image-overlay {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;

    z-index: 2;

    color: #ffffff;
}


.mega-image-overlay span {
    display: block;

    margin-bottom: 8px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.15em;
}


.mega-image-overlay h3 {
    margin: 0 0 16px;

    max-width: 280px;

    font-size: 26px;
    line-height: 1.15;

    font-weight: 600;
}


.mega-image-overlay strong {
    display: inline-block;

    padding-bottom: 5px;

    border-bottom: 1px solid #ffffff;

    font-size: 10px;

    letter-spacing: 0.12em;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;

    gap: 18px;

    flex: 0 0 auto;
}


.action-icon {
    position: relative;

    width: 25px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #111111;

    text-decoration: none;

    font-size: 19px;
}


.cart-count {
    position: absolute;

    top: 2px;
    right: -7px;

    min-width: 16px;
    height: 16px;

    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #117aa6;
    color: #ffffff;

    font-size: 9px;
}


.wishlist {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #111111;

    text-decoration: none;

    font-size: 13px;
}


.wishlist i {
    font-size: 17px;
}


.shop-btn {
    min-height: 33px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: #ffffff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Normal Hover Effect */
.shop-btn:hover {
    background: #37C8F3;
    color: #ffffff;
}

.about-brand-btn {
    position: absolute;
    bottom: 66px;
    left: 50%;
    transform: translateX(-50%);
}

.shop-btn:hover::before {
    left: 130%;
}



/* =========================================================
   MOBILE BUTTON
========================================================= */

.menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #111111;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    font-size: 25px;
}


/* =========================================================
   MOBILE OVERLAY
========================================================= */

.mobile-overlay {
    position: fixed;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 10001;
}


.mobile-overlay.active {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;

    top: 0;
    right: 0;

    width: min(420px, 88vw);
    height: 100dvh;

    background: #ffffff;

    z-index: 10002;

    display: flex;
    flex-direction: column;

    transform: translateX(100%);

    visibility: hidden;

    transition:
        transform 0.35s cubic-bezier(.4, 0, .2, 1),
        visibility 0.35s ease;

    box-shadow:
        -10px 0 40px rgba(0, 0, 0, 0.12);
}


.mobile-menu.active {
    transform: translateX(0);

    visibility: visible;
}


/* =========================================================
   MOBILE HEADER
========================================================= */

.mobile-menu-header {
    height: 72px;

    flex: 0 0 72px;

    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #eeeeee;
}


.mobile-menu-header span {
    color: #111111;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.15em;
}


.mobile-close {
    width: 40px;
    height: 40px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #111111;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
}


/* =========================================================
   MOBILE BODY
========================================================= */

.mobile-menu-body {
    flex: 1;

    min-height: 0;

    overflow-y: auto;
    overflow-x: hidden;

    padding: 5px 22px 35px;

    overscroll-behavior: contain;

    -webkit-overflow-scrolling: touch;
}


/* =========================================================
   MOBILE MAIN LINKS
========================================================= */

.mobile-main-link {
    min-height: 58px;

    display: flex;
    align-items: center;

    border-bottom: 1px solid #eeeeee;

    color: #111111;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;
}


/* =========================================================
   MOBILE ACCORDION
========================================================= */

.mobile-menu-item {
    border-bottom: 1px solid #eeeeee;
}


.mobile-menu-title {
    width: 100%;
    min-height: 58px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #111111;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;

    text-align: left;

    font-family: inherit;

    font-size: 15px;
    font-weight: 500;
}


.mobile-menu-title i {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    transition:
        transform 0.3s ease;
}


.mobile-menu-item.active .mobile-menu-title i {
    transform: rotate(45deg);
}


/* =========================================================
   SUBMENU
========================================================= */

.mobile-submenu {
    max-height: 0;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    transition:
        max-height 0.35s ease;
}


.mobile-menu-item.active .mobile-submenu {
    max-height: 700px;
}


.mobile-submenu a {
    display: block;

    padding: 8px 10px 8px 12px;

    color: #666666;

    text-decoration: none;

    font-size: 14px;

    line-height: 1.5;
}


.mobile-submenu a:first-child {
    padding-top: 4px;
}


.mobile-submenu a:last-child {
    padding-bottom: 18px;
}


/* =========================================================
   MOBILE SHOP BUTTON
========================================================= */

.mobile-shop-btn {
    min-height: 50px;

    margin-top: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111111;
    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.12em;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .header-inner {
        width: calc(100% - 40px);

        gap: 20px;
    }

    .nav {
        gap: 18px;
    }

    .nav-link {
        font-size: 13px;
    }

    .header-actions {
        gap: 12px;
    }

    .wishlist span {
        display: none;
    }

    .mega-menu-inner {
        width: calc(100% - 40px);

        grid-template-columns:
            minmax(0, 1fr) 300px;

        gap: 30px;
    }

    .mega-links {
        gap: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .header {
        height: 72px;
    }


    .header-inner {
        width: calc(100% - 30px);
    }


    /* Hide desktop navigation */

    .nav {
        display: none;
    }


    /* Hide shop button */

    .shop-btn {
        display: none;
    }


    /* Show menu */

    .menu-btn {
        display: flex;
    }


    .logo img {
        width: 110px;
    }


    .header-actions {
        margin-left: auto;

        gap: 8px;
    }


    .action-icon {
        width: 34px;
    }


    .wishlist {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .header {
        height: 64px;
    }


    .header-inner {
        width: calc(100% - 20px);

        gap: 10px;
    }


    .logo img {
        width: 92px;
    }


    .header-actions {
        gap: 9px;
    }

    .about-brand-btn {

        text-align: center;
    }


    .action-icon {
        width: 34px;
        height: 40px;
    }


    .action-icon:first-child {
        display: none;
    }


    .menu-btn {
        width: 40px;
        height: 40px;

        font-size: 24px;
    }


    .mobile-menu {
        width: 100%;
    }


    .mobile-menu-header {
        height: 64px;

        flex-basis: 64px;

        padding: 0 18px;
    }


    .mobile-menu-body {
        padding-left: 18px;
        padding-right: 18px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .logo img {
        width: 82px;
    }


    .action-icon {
        width: 30px;
    }


    .menu-btn {
        width: 36px;
    }

}



/* login and Register Section  */

/* =========================================
   ACCOUNT MODAL
========================================= */

.account-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.account-modal.active {
    visibility: visible;
    opacity: 1;
}


/* Overlay */

.account-modal__overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.68);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}


/* Modal Box */

.account-modal__box {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 900px;

    min-height: 560px;

    display: grid;
    grid-template-columns: 38% 62%;

    background: #fff;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25);

    transform: translateY(30px) scale(0.96);

    transition:
        transform 0.35s ease;
}

.account-modal.active .account-modal__box {
    transform: translateY(0) scale(1);
}


/* =========================================
   LEFT INTRO
========================================= */

.account-modal__intro {
    position: relative;

    padding: 55px 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow: hidden;

    background: #111;
    color: #fff;
}

.account-modal__intro-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    font-size: 28px;
}

.account-modal__intro h2 {
    position: relative;
    z-index: 2;

    margin: 0 0 15px;

    font-size: 38px;
    line-height: 1.15;

    font-weight: 600;
}

.account-modal__intro p {
    position: relative;
    z-index: 2;

    max-width: 280px;

    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;
    line-height: 1.7;
}


/* Decorative Circle */

.account-modal__shape {
    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    bottom: -120px;

    border: 70px solid rgba(255, 255, 255, 0.05);

    border-radius: 50%;
}

.account-modal__shape::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    top: -20px;
    left: -20px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;
}


/* =========================================
   CLOSE
========================================= */

.account-modal__close {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 20;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: #f5f5f5;

    color: #222;

    cursor: pointer;

    transition: all 0.25s ease;
}

.account-modal__close:hover {
    background: #111;
    color: #fff;

    transform: rotate(90deg);
}


/* =========================================
   RIGHT CONTENT
========================================= */

.account-modal__content {
    padding: 55px 55px 40px;

    overflow-y: auto;
    max-height: 90vh;
}


/* =========================================
   TABS
========================================= */

.account-tabs {
    display: flex;

    width: 100%;

    margin-bottom: 38px;

    border-bottom: 1px solid #e8e8e8;
}

.account-tab {
    position: relative;

    flex: 1;

    padding: 0 10px 17px;

    border: 0;

    background: transparent;

    color: #999;

    font-family: inherit;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: color 0.25s ease;
}

.account-tab::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 100%;
    height: 2px;

    background: #111;

    transform: scaleX(0);

    transition: transform 0.3s ease;
}

.account-tab.active {
    color: #111;
}

.account-tab.active::after {
    transform: scaleX(1);
}


/* =========================================
   FORM
========================================= */

.account-form {
    display: none;

    animation: accountFade 0.3s ease;
}

.account-form.active {
    display: block;
}

@keyframes accountFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.account-heading {
    margin-bottom: 28px;
}

.account-heading h3 {
    margin: 0 0 8px;

    color: #111;

    font-size: 25px;
    font-weight: 600;
}

.account-heading p {
    margin: 0;

    color: #888;

    font-size: 14px;
}


/* =========================================
   FORM GROUP
========================================= */

.form-group {
    margin-bottom: 19px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #333;

    font-size: 13px;
    font-weight: 600;
}


/* Input */

.input-box {
    position: relative;
}

.input-box>i {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: #999;

    font-size: 17px;

    pointer-events: none;
}

.input-box input {
    width: 100%;

    height: 50px;

    padding: 0 45px;

    border: 1px solid #dedede;

    border-radius: 9px;

    outline: none;

    background: #fff;

    color: #111;

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.input-box input::placeholder {
    color: #aaa;
}

.input-box input:focus {
    border-color: #111;

    box-shadow:
        0 0 0 3px rgba(0, 0, 0, 0.05);
}


/* Password Toggle */

.password-toggle {
    position: absolute;

    top: 50%;
    right: 14px;

    transform: translateY(-50%);

    border: 0;

    padding: 4px;

    background: transparent;

    color: #999;

    cursor: pointer;
}

.password-toggle:hover {
    color: #111;
}


/* =========================================
   FORM ROW
========================================= */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


/* =========================================
   OPTIONS
========================================= */

.form-options {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin: 5px 0 23px;

    font-size: 12px;
}

.remember-me {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #777;

    cursor: pointer;
}

.remember-me input {
    accent-color: #111;
}

.forgot-password {
    color: #222;

    text-decoration: none;

    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.account-submit {
    width: 100%;

    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 0;

    border-radius: 9px;

    background: #117aa6;

    color: #fff;

    font-family: inherit;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}

.account-submit i {
    transition: transform 0.25s ease;
}

.account-submit:hover {
    background: #2c2c2c;

    transform: translateY(-1px);
}

.account-submit:hover i {
    transform: translateX(4px);
}


/* =========================================
   DIVIDER
========================================= */

.account-divider {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 25px 0;
}

.account-divider::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    height: 1px;

    background: #eee;
}

.account-divider span {
    position: relative;

    padding: 0 12px;

    background: #fff;

    color: #aaa;

    font-size: 10px;
}


/* =========================================
   SWITCH
========================================= */

.account-switch {
    text-align: center;

    color: #888;

    font-size: 13px;
}

.account-switch button {
    padding: 0;

    border: 0;

    background: transparent;

    color: #111;

    font-family: inherit;

    font-size: inherit;
    font-weight: 600;

    cursor: pointer;
}

.account-switch button:hover {
    text-decoration: underline;
}


/* =========================================
   TERMS
========================================= */

.terms-check {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin: 4px 0 20px;

    color: #888;

    font-size: 11px;

    line-height: 1.6;

    cursor: pointer;
}

.terms-check input {
    flex-shrink: 0;

    margin-top: 3px;

    accent-color: #111;
}

.terms-check a {
    color: #222;

    font-weight: 600;

    text-decoration: none;
}

.terms-check a:hover {
    text-decoration: underline;
}


/* =========================================
   BODY LOCK
========================================= */

body.account-modal-open {
    overflow: hidden;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .account-modal {
        padding: 15px;
    }

    .account-modal__box {
        max-width: 560px;

        grid-template-columns: 1fr;

        min-height: auto;

        max-height: 92vh;

        overflow-y: auto;
    }

    .account-modal__intro {
        display: none;
    }

    .account-modal__content {
        padding: 45px 35px 35px;

        max-height: none;
    }

    .account-modal__close {
        top: 13px;
        right: 13px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    .account-modal {
        padding: 10px;
    }

    .account-modal__box {
        border-radius: 16px;

        max-height: 95vh;
    }

    .account-modal__content {
        padding: 48px 20px 25px;
    }

    .account-tabs {
        margin-bottom: 28px;
    }

    .account-tab {
        font-size: 14px;

        padding-bottom: 13px;
    }

    .account-heading {
        margin-bottom: 23px;
    }

    .account-heading h3 {
        font-size: 21px;
    }

    .account-heading p {
        font-size: 13px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .input-box input {
        height: 48px;
    }

    .account-submit {
        height: 50px;
    }

    .account-modal__close {
        width: 34px;
        height: 34px;

        font-size: 12px;
    }

}


/* Small Mobile */

@media (max-width: 360px) {

    .account-modal__content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .form-options {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

}

/* login and Register Section  */





/* =========================================================
   WISHLIST
========================================================= */

.adonis-wishlist {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: #fff;

    color: #087ca8;

    font-size: 16px;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, .12);

    cursor: pointer;

    z-index: 5;
}

.adonis-wishlist.active {
    color: #e90073;
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.adonis-product-card__info {
    padding:
        15px 10px 18px;

    text-align: center;
}

.adonis-product-card__info h3 {
    min-height: 42px;

    margin: 0;

    font-size: 14px;

    line-height: 1.3;

    font-weight: 600;

    color: #111;
}

.adonis-product-card__price {
    margin-top: 7px;

    font-size: 15px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================================
   ADD TO CART
========================================================= */

.adonis-cart {
    width: 105px;
    height: 31px;

    display: block;

    margin: 11px auto 0;

    border: 0;

    border-radius: 30px;

    background: #000;

    color: #fff;

    font-size: 9px;

    font-weight: 600;

    cursor: pointer;

    transition: .25s ease;
}

.adonis-cart:hover {
    background: #087ca8;
}


/* =========================================================
   LOAD MORE
========================================================= */

.adonis-hidden-product {
    display: none;
}

.adonis-hidden-product.adonis-show {
    display: block;
}

.adonis-load-more-wrap {
    width: 100%;

    display: flex;

    justify-content: center;

    margin-top: 38px;
}

.adonis-load-more {
    min-width: 140px;
    height: 40px;

    padding: 0 25px;

    border: 1px solid #111;

    border-radius: 30px;

    background: #111;

    color: #fff;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    transition: .25s ease;
}

.adonis-load-more:hover {
    background: #fff;

    color: #111;
}

.adonis-load-more.hide {
    display: none;
}


/* =========================================================
   PAGINATION
========================================================= */

.adonis-pagination {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-top: 48px;
}

.adonis-pagination__arrow {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #24a8dc;

    background: #fff;

    color: #111;

    font-size: 16px;

    cursor: pointer;

    transition: .2s ease;
}

.adonis-pagination__arrow:hover {
    background: #24a8dc;

    color: #fff;
}

.adonis-pagination__dots {
    display: flex;

    align-items: center;

    gap: 8px;
}

.adonis-pagination__dots span {
    width: 5px;
    height: 5px;

    display: block;

    border-radius: 50%;

    background: #24a8dc;
}

.adonis-pagination__dots span.active {
    width: 10px;
    height: 10px;

    background: #fff;

    border: 2px solid #24a8dc;
}


/* =========================================================
   SEARCH OVERLAY
========================================================= */

.adonis-search-overlay {
    position: fixed;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(0, 0, 0, .48);

    opacity: 0;

    visibility: hidden;

    z-index: 99999;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.adonis-search-overlay.active {
    opacity: 1;

    visibility: visible;
}


/* =========================================================
   SEARCH POPUP
========================================================= */

.adonis-search-popup {
    position: relative;

    width: 100%;
    max-width: 620px;

    min-height: 260px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 55px 50px;

    border-radius: 12px;

    background: #fff;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .2);

    transform:
        translateY(-15px) scale(.97);

    transition:
        transform .25s ease;
}

.adonis-search-overlay.active .adonis-search-popup {
    transform:
        translateY(0) scale(1);
}


/* CLOSE */

.adonis-search-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: #f3f3f3;

    color: #111;

    font-size: 13px;

    cursor: pointer;

    transition: .2s ease;
}

.adonis-search-close:hover {
    background: #111;

    color: #fff;
}


/* CONTENT */

.adonis-search-popup__content {
    width: 100%;

    text-align: center;
}

.adonis-search-popup__small {
    display: block;

    margin-bottom: 7px;

    color: #087ca8;

    font-size: 10px;

    letter-spacing: 1.5px;

    font-weight: 700;
}

.adonis-search-popup__content h2 {
    margin: 0 0 25px;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 700;

    color: #111;
}


/* =========================================================
   SEARCH INPUT
========================================================= */

.adonis-search-form {
    width: 100%;
}

.adonis-search-input {
    width: 100%;
    height: 55px;

    display: flex;

    align-items: center;

    padding-left: 18px;

    border: 1px solid #ddd;

    border-radius: 5px;

    background: #fff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.adonis-search-input:focus-within {
    border-color: #087ca8;

    box-shadow:
        0 0 0 3px rgba(8, 124, 168, .09);
}

.adonis-search-input>i {
    color: #087ca8;

    font-size: 17px;
}

.adonis-search-input input {
    width: 100%;

    height: 100%;

    padding: 0 14px;

    border: 0;

    outline: 0;

    background: transparent;

    color: #111;

    font-size: 14px;
}

.adonis-search-input input::placeholder {
    color: #999;
}

.adonis-search-input>button {
    width: 55px;
    height: 55px;

    flex: 0 0 55px;

    border: 0;

    background: #087ca8;

    color: #fff;

    font-size: 17px;

    cursor: pointer;

    transition: .2s ease;
}

.adonis-search-input>button:hover {
    background: #066b90;
}


/* RESULT */

.adonis-search-result {
    min-height: 20px;

    margin: 14px 0 0;

    font-size: 12px;

    color: #666;
}


/* =========================================================
   BODY LOCK
========================================================= */

body.adonis-search-open {
    overflow: hidden;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .adonis-products {
        padding-left: 25px;
        padding-right: 25px;
    }

    .adonis-products__container {
        grid-template-columns:
            190px minmax(0, 1fr);

        gap: 28px;
    }

    .adonis-product-card__image {
        height: 255px;
    }
}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .adonis-products {
        padding:
            42px 20px 65px;
    }

    .adonis-products__container {
        grid-template-columns:
            175px minmax(0, 1fr);

        gap: 22px;
    }

    .adonis-product-card__image {
        height: 225px;
    }

    .adonis-product-card__info h3 {
        font-size: 13px;
    }

    .adonis-product-card__price {
        font-size: 14px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .adonis-products {
        padding:
            30px 15px 55px;
    }

    .adonis-products__container {
        display: block;
    }


    /* Filter */

    .adonis-filter__title {
        margin-bottom: 15px;
    }

    .adonis-filter__title h3 {
        font-size: 17px;
    }

    .adonis-filter__box {
        margin-bottom: 22px;
    }


    /* Top */

    .adonis-products__top {
        justify-content: space-between;

        margin-bottom: 16px;
    }

    .adonis-products__count {
        display: block;

        font-size: 12px;
    }

    .adonis-sort {
        width: 130px;

        height: 36px;

        font-size: 10px;
    }


    /* Grid */

    .adonis-product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px 9px;
    }


    /* Image */

    .adonis-product-card__image {
        height: auto;

        aspect-ratio: 1 / 1;
    }


    /* Info */

    .adonis-product-card__info {
        padding:
            11px 6px 14px;
    }

    .adonis-product-card__info h3 {
        min-height: 38px;

        font-size: 11px;

        line-height: 1.35;
    }

    .adonis-product-card__price {
        margin-top: 6px;

        font-size: 13px;
    }


    /* Wishlist */

    .adonis-wishlist {
        top: 8px;
        right: 8px;

        width: 29px;
        height: 29px;

        font-size: 14px;
    }


    /* Cart */

    .adonis-cart {
        width: 92px;
        height: 29px;

        margin-top: 9px;

        font-size: 8px;
    }


    /* Search Popup */

    .adonis-search-popup {
        max-width: 100%;

        min-height: 230px;

        padding:
            45px 20px 35px;
    }

    .adonis-search-popup__content h2 {
        font-size: 25px;

        margin-bottom: 20px;
    }

    .adonis-search-input {
        height: 50px;
    }

    .adonis-search-input>button {
        width: 50px;
        height: 50px;

        flex-basis: 50px;
    }


    /* Pagination */

    .adonis-pagination {
        margin-top: 35px;

        gap: 15px;
    }

    .adonis-pagination__arrow {
        width: 35px;
        height: 35px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .adonis-products {
        padding-left: 10px;
        padding-right: 10px;
    }

    .adonis-product-grid {
        gap: 10px 7px;
    }

    .adonis-product-card__info {
        padding:
            10px 5px 13px;
    }

    .adonis-product-card__info h3 {
        min-height: 35px;

        font-size: 10px;
    }

    .adonis-product-card__price {
        font-size: 12px;
    }

    .adonis-cart {
        width: 85px;

        height: 27px;

        font-size: 7px;
    }

    .adonis-wishlist {
        width: 27px;
        height: 27px;

        font-size: 13px;
    }

    .adonis-search-popup__content h2 {
        font-size: 22px;
    }
}

/* Product Single Page Section  */

/* whish list section  */


.wishlist-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.wishlist-btn:hover {
    color: #555;
}

.wishlist-icon {
    position: relative;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-icon i {
    font-size: 20px;
}

.wishlist-count {
    position: absolute;
    top: -7px;
    right: -7px;

    min-width: 16px;
    height: 16px;

    padding: 0 4px;

    border-radius: 50%;
    background: var(--blue);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 8px;
}


/* =====================================================
   OVERLAY
===================================================== */

.wishlist-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, .38);

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;

    z-index: 9998;
}

.wishlist-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =====================================================
   DRAWER
===================================================== */

.wishlist-drawer {
    position: fixed;

    top: 0;
    right: 0;

    width: 430px;
    max-width: 100%;

    height: 100vh;
    height: 100dvh;

    background: #fff;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    transform: translateX(100%);

    transition:
        transform .4s cubic-bezier(.65, 0, .35, 1);

    box-shadow: -10px 0 35px rgba(0, 0, 0, .12);
}

.wishlist-drawer.active {
    transform: translateX(0);
}


/* =====================================================
   HEADER
===================================================== */

.wishlist-header {
    flex-shrink: 0;

    padding: 23px 25px 19px;

    border-bottom: 1px solid #ededed;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wishlist-heading small {
    display: block;

    margin-bottom: 4px;

    color: #999;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.7px;
}

.wishlist-heading h2 {
    font-size: 25px;
    font-weight: 500;

    line-height: 1;
}

.wishlist-heading p {
    margin-top: 7px;

    color: #888;

    font-size: 11px;
}


/* =====================================================
   CLOSE
===================================================== */

.wishlist-close {
    width: 38px;
    height: 38px;

    border: 1px solid #ddd;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: .25s ease;
}

.wishlist-close i {
    font-size: 14px;
}

.wishlist-close:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}


/* =====================================================
   PRODUCT LIST
===================================================== */

.wishlist-list {
    flex: 1;

    overflow-y: auto;

    padding: 5px 25px 20px;
}

.wishlist-list::-webkit-scrollbar {
    width: 3px;
}

.wishlist-list::-webkit-scrollbar-thumb {
    background: #ccc;
}


/* =====================================================
   PRODUCT
===================================================== */

.wishlist-item {
    display: flex;
    gap: 14px;

    padding: 18px 0;

    border-bottom: 1px solid #ededed;

    transition: .3s ease;
}

.wishlist-item.removing {
    opacity: 0;
    transform: translateX(30px);
}


/* =====================================================
   IMAGE
===================================================== */

.wishlist-product-img {
    width: 88px;
    height: 108px;

    flex-shrink: 0;

    overflow: hidden;

    background: #f5f5f5;

    position: relative;
}

.wishlist-product-img img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: .5s ease;
}

.wishlist-item:hover img {
    transform: scale(1.05);
}


/* =====================================================
   CONTENT
===================================================== */

.wishlist-info {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wishlist-info-top {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.wishlist-category {
    display: block;

    margin-bottom: 6px;

    color: #999;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.2px;
}

.wishlist-name {
    font-size: 14px;
    font-weight: 500;

    line-height: 1.35;

    color: #111;
}


/* =====================================================
   DELETE
===================================================== */

.wishlist-remove {
    width: 26px;
    height: 26px;

    flex-shrink: 0;

    border: 0;
    background: none;

    color: #999;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .2s ease;
}

.wishlist-remove:hover {
    color: #111;
}

.wishlist-remove i {
    font-size: 13px;
}


/* =====================================================
   PRICE + CART
===================================================== */

.wishlist-bottom {
    margin-top: 13px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;
}

.wishlist-price {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.wishlist-cart {
    border: 1px solid var(--blue);
    background: var(--blue);
    color: #fff;
    padding: 8px 11px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .25s ease;
    border-radius: 30px;
}

.wishlist-cart i {
    font-size: 10px;
}

.wishlist-cart:hover {
    background: #fff;
    color: #111;
}


/* =====================================================
   FOOTER
===================================================== */

.wishlist-footer {
    flex-shrink: 0;

    border-top: 1px solid #ededed;

    padding: 15px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #fff;
}

.wishlist-total span {
    display: block;

    color: #999;

    font-size: 8px;
    letter-spacing: 1px;

    margin-bottom: 3px;
}

.wishlist-total strong {
    font-size: 11px;
    font-weight: 600;
}

.wishlist-view {
    border: 0;
    background: none;

    color: #111;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1px;

    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 6px;
}

.wishlist-view i {
    font-size: 12px;

    transition: .2s ease;
}

.wishlist-view:hover i {
    transform: translateX(3px);
}


/* =====================================================
   EMPTY STATE
===================================================== */

.wishlist-empty {
    flex: 1;

    display: none;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    text-align: center;

    padding: 30px;
}

.wishlist-empty.active {
    display: flex;
}

.empty-icon {
    width: 60px;
    height: 60px;

    border: 1px solid #e5e5e5;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;
}

.empty-icon i {
    font-size: 23px;
}

.wishlist-empty small {
    color: #999;

    font-size: 8px;
    letter-spacing: 1.5px;
}

.wishlist-empty h3 {
    margin-top: 8px;

    font-size: 19px;
    font-weight: 500;
}

.wishlist-empty p {
    max-width: 260px;

    margin-top: 8px;

    color: #888;

    font-size: 11px;
    line-height: 1.6;
}

.empty-btn {
    margin-top: 18px;

    border: 1px solid #111;

    background: #111;
    color: #fff;

    padding: 10px 14px;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1px;

    cursor: pointer;
}


/* =====================================================
   BODY LOCK
===================================================== */

body.wishlist-open {
    overflow: hidden;
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:600px) {

    .wishlist-drawer {
        width: 400px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:480px) {

    .wishlist-drawer {
        width: 100%;
    }

    .wishlist-header {
        padding: 20px 18px 17px;
    }

    .wishlist-heading h2 {
        font-size: 23px;
    }

    .wishlist-list {
        padding-left: 18px;
        padding-right: 18px;
    }

    .wishlist-footer {
        padding: 13px 18px;
    }

    .wishlist-item {
        gap: 12px;
        padding: 15px 0;
    }

    .wishlist-product-img {
        width: 78px;
        height: 98px;
    }

    .wishlist-name {
        font-size: 13px;
    }

    .wishlist-price {
        font-size: 13px;
    }

    .wishlist-cart {
        padding: 7px 9px;
        font-size: 7px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media(max-width:350px) {

    .wishlist-product-img {
        width: 70px;
        height: 88px;
    }

    .wishlist-name {
        font-size: 12px;
    }

    .wishlist-cart {
        padding: 6px 7px;
    }

}

/* whish list section  */




.google-login {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: #ffffff;
    color: #202124;

    border: 1px solid #dadce0;
    border-radius: 6px;

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;
    text-decoration: none;

    transition: all 0.25s ease;
}

.google-login img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.google-login span {
    line-height: 1;
}

/* Normal Hover */
.google-login:hover {
    background: #f8f9fa;
    border-color: #c6c6c6;
}

/* Click Effect */
.google-login:active {
    background: #f1f3f4;
    transform: scale(0.99);
}