/*
|--------------------------------------------------------------------------
| GLOBAL SHINE EFFECT
|--------------------------------------------------------------------------
*/

.shine-effect{

    position:relative;

    overflow:hidden;

    isolation:isolate;

}

.shine-effect::before{

    content:'';

    position:absolute;

    top:0;

    left:-120%;

    width:80%;

    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent 0%,
            rgba(255,255,255,.10) 35%,
            rgba(255,255,255,.38) 50%,
            rgba(255,255,255,.10) 65%,
            transparent 100%
        );

    transform:skewX(-18deg);

    transition:left .8s ease;

    z-index:3;

    pointer-events:none;

}

.shine-effect:hover::before{

    left:140%;

}

/*
|--------------------------------------------------------------------------
| BUTTONS
|--------------------------------------------------------------------------
*/

.primary-btn{

    position:relative;

    overflow:hidden;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    height:68px;

    padding:0 38px;

    border-radius:999px;

    background:var(--button-gradient);

    color:#fff;

    font-size:16px;

    font-weight:700;

    transition:all .3s ease;

    box-shadow:var(--button-shadow);

}

.primary-btn::before{

    content:'';

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.45),
            transparent
        );

    transform:skewX(-20deg);

    transition:left .75s ease;

}

.primary-btn:hover::before,
.primary-btn:focus-visible::before{

    left:150%;

}

.primary-btn:hover,
.primary-btn:focus-visible{

    transform:translateY(-3px);

    color:#fff;

    outline:0;

    box-shadow:var(--button-shadow-hover);

}

.secondary-btn{

    position:relative;

    overflow:hidden;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:58px;

    padding:0 32px;

    border-radius:999px;

    border:1px solid var(--border);

    background:#fff;

    font-size:15px;

    font-weight:600;

    transition:var(--transition);

}

.secondary-btn::before{

    content:'';

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.85),
            transparent
        );

    transform:skewX(-20deg);

    transition:left .75s ease;

}

.secondary-btn:hover::before{

    left:150%;

}

.secondary-btn:hover{

    border-color:var(--orange);

}

/*
|--------------------------------------------------------------------------
| NAVBAR
|--------------------------------------------------------------------------
*/

.topbar{

    height:42px;

    background:#020011;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:40px;

    font-size:13px;

}

.navbar{

    position:sticky;

    top:0;

    z-index:999;

    width:100%;

    height:96px;

    min-height:96px;

    padding:0 52px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    background:rgba(255,255,255,.78);

    backdrop-filter:blur(28px);

    border-bottom:1px solid rgba(255,255,255,.4);

    box-shadow:
        0 8px 30px rgba(0,0,0,.03);

}

.navbar-logo{

    display:flex;

    align-items:center;

    height:100%;

}

.desktop-nav{

    display:flex;

    align-items:center;

    gap:32px;

}

.desktop-nav a{

    position:relative;

    font-weight:600;

    transition:var(--transition);

}

.desktop-nav a::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--orange);

    transition:.25s ease;

}

.desktop-nav a:hover::after{

    width:100%;

}

.right-nav{

    display:flex;

    align-items:center;

    gap:20px;

}

.nav-icons{

    display:flex;

    align-items:center;

    gap:28px;

    height:100%;

}

/*
|--------------------------------------------------------------------------
| CART
|--------------------------------------------------------------------------
*/

.cart-trigger{

    position:relative;

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.cart-trigger i{

    font-size:20px;

    color:var(--text);

}

.cart-icon{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    width:40px;

    height:40px;

    color:var(--black);

    font-size:28px;

}

.cart-count{

    position:absolute;

    top:-8px;

    right:-10px;

    width:24px;

    height:24px;

    border-radius:50%;

    background:var(--orange);

    color:#fff;

    font-size:12px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    line-height:1;

    z-index:10;

}

.logo-img{

    display:block;

    width:auto;

    height:72px;

    max-height:72px;

    object-fit:contain;

    flex-shrink:0;

}

.logo-picture,
.footer-logo-picture{

    display:block;

    line-height:0;

}

/*
|--------------------------------------------------------------------------
| MOBILE MENU
|--------------------------------------------------------------------------
*/

.mobile-overlay{

    position:fixed;

    top:var(--novaro-mobile-menu-offset, 96px);

    left:0;

    right:0;

    bottom:0;

    display:none;

    background:rgba(2,0,17,.24);

    backdrop-filter:blur(6px);

    z-index:997;

}

.mobile-overlay.active{

    display:block;

}

.mobile-menu{

    position:fixed;

    top:var(--novaro-mobile-menu-offset, 96px);

    left:0;

    right:0;

    background:#fff;

    bottom:0;

    padding:30px 20px 28px;

    display:none;

    flex-direction:column;

    gap:8px;

    z-index:998;

    overflow-y:auto;

    border-top:1px solid rgba(2,0,17,.06);

    box-shadow:
        0 24px 50px rgba(2,0,17,.08);

}

.mobile-menu a{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:space-between;

    width:100%;

    color:var(--black);

    min-height:60px;

    font-size:18px;

    font-weight:800;

    padding:0 18px;

    border:1px solid transparent;

    border-radius:18px;

    background:#fff;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease;

}

.mobile-menu a::after{

    content:'';

    width:8px;

    height:8px;

    border-top:2px solid currentColor;

    border-right:2px solid currentColor;

    transform:rotate(45deg);

    opacity:.4;

}

.mobile-menu a:hover,
.mobile-menu a:focus-visible{

    color:var(--orange);

    background:#fff7f1;

    border-color:rgba(241,112,18,.18);

    outline:0;

}

.mobile-menu a:active{

    transform:scale(.99);

}

.mobile-menu.active{

    display:flex;

}

.burger-menu{

    display:none;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    gap:5px;

    width:44px;

    height:44px;

    padding:0;

    border:0;

    border-radius:12px;

    background:transparent;

    cursor:pointer;

    flex-shrink:0;

}

.burger-menu span{

    width:26px;

    height:2px;

    background:#000;

    border-radius:999px;

    transition:
        transform .2s ease,
        opacity .2s ease;

}

.burger-menu.active span:nth-child(1){

    transform:translateY(7px) rotate(45deg);

}

.burger-menu.active span:nth-child(2){

    opacity:0;

}

.burger-menu.active span:nth-child(3){

    transform:translateY(-7px) rotate(-45deg);

}

/*
|--------------------------------------------------------------------------
| PRODUCT CARD
|--------------------------------------------------------------------------
*/

.product-card{

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    height:100%;

    background:#fff;

    border-radius:32px;

    box-shadow:var(--shadow-sm);

    transition:all .35s ease;

}

.product-card::before{

    content:'';

    position:absolute;

    top:0;

    left:-140%;

    width:70%;

    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.22),
            transparent
        );

    transform:skewX(-20deg);

    transition:left .9s ease;

    z-index:3;

    pointer-events:none;

}

.product-card:hover::before{

    left:160%;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 30px 60px rgba(0,0,0,.08);

}

.product-image-wrapper{

    position:relative;

}

.product-image{

    aspect-ratio:1/1;

    overflow:hidden;

    background:#f7f2ea;

    display:flex;

    align-items:center;

    justify-content:center;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:transform .6s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.04);

}

.product-wishlist{

    position:absolute;

    top:18px;

    right:18px;

    width:44px;

    height:44px;

    border-radius:50%;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(10px);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:all .3s ease;

}

.product-content{

    flex:1;

    display:flex;

    flex-direction:column;

    padding:26px;

}

.product-meta{

    margin-bottom:10px;

    font-size:13px;

    color:var(--text-light);

    min-height:18px;

}

.product-content h3{

    font-size:22px;

    line-height:1.3;

    margin-bottom:22px;

    min-height:58px;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

.product-bottom{

    margin-top:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:14px;

}

.product-price{

    font-size:24px;

    font-weight:800;

    white-space:nowrap;

}

.product-actions{

    display:flex;

    align-items:center;

    justify-content:flex-end;

    gap:10px;

    min-width:0;

}

.product-card .novaro-qty{

    display:inline-flex;

    align-items:center;

    background:#F1ECE3;

    border-radius:999px;

    padding:4px;

    gap:2px;

    flex:0 0 auto;

}

.product-card .novaro-qty__btn{

    width:32px;

    height:32px;

    border-radius:50%;

    border:0;

    background:#fff;

    color:var(--text);

    font-size:18px;

    font-weight:700;

    line-height:1;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:background .15s,color .15s,transform .15s;

}

.product-card .novaro-qty__btn:hover,
.product-card .novaro-qty__btn:focus-visible{

    background:var(--orange);

    color:#fff;

    outline:0;

}

.product-card .novaro-qty__btn:active{

    transform:scale(.94);

}

.product-card .novaro-qty__input{

    width:38px;

    text-align:center;

    border:0;

    background:transparent;

    color:var(--text);

    font:inherit;

    font-size:15px;

    font-weight:700;

    outline:none;

    -moz-appearance:textfield;

}

.product-card .novaro-qty__input::-webkit-outer-spin-button,
.product-card .novaro-qty__input::-webkit-inner-spin-button{

    -webkit-appearance:none;

    margin:0;

}

.product-cart-btn{

    position:relative;

    overflow:hidden;

    width:54px;

    height:54px;

    min-width:54px;

    min-height:54px;

    padding:0;

    border-radius:18px;

    background:var(--button-gradient);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    line-height:1;

    text-decoration:none;

    transition:all .3s ease;

    box-shadow:
        0 14px 28px rgba(237,127,26,.24);

}

.product-cart-btn i{

    display:none;

}

.product-card .added_to_cart,
.product-card .wc-forward,
.woocommerce .product-card .added_to_cart,
.added_to_cart.wc-forward{

    display:none !important;

}

.product-cart-btn::before{

    content:'';

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.55),
            transparent
        );

    transform:skewX(-20deg);

    transition:left .7s ease;

    z-index:1;

}

.product-cart-btn::after{

    content:'';

    position:absolute;

    top:50%;

    left:50%;

    width:18px;

    height:18px;

    transform:translate(-50%,-50%);

    background:
        linear-gradient(#fff,#fff) center/100% 3px no-repeat,
        linear-gradient(#fff,#fff) center/3px 100% no-repeat;

    border-radius:2px;

    z-index:2;

    pointer-events:none;

}

.product-cart-btn:hover::before,
.product-cart-btn:focus-visible::before{

    left:160%;

}

.product-cart-btn:hover,
.product-cart-btn:focus-visible{

    transform:scale(1.08);

    color:#fff;

    outline:0;

    box-shadow:
        0 20px 38px rgba(237,127,26,.32);

}

/*
|--------------------------------------------------------------------------
| CATEGORY CARD
|--------------------------------------------------------------------------
*/

.category-card{

    position:relative;

    overflow:hidden;

    min-width:320px;

    height:420px;

    border-radius:32px;

    flex-shrink:0;

    box-shadow:var(--shadow-sm);

    transition:all .35s ease;

}

.category-card::before{

    content:'';

    position:absolute;

    top:0;

    left:-140%;

    width:70%;

    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.20),
            transparent
        );

    transform:skewX(-18deg);

    transition:left .9s ease;

    z-index:3;

}

.category-card:hover::before{

    left:160%;

}

.category-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 30px 60px rgba(0,0,0,.10);

}

.category-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .6s ease;

}

.category-card:hover img{

    transform:scale(1.06);

}

.category-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:28px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.65),
        transparent
    );

}

.category-overlay h3{

    color:#fff;

    font-size:28px;

    font-weight:800;

}

/*
|--------------------------------------------------------------------------
| BENEFIT CARD
|--------------------------------------------------------------------------
*/

.benefit-card{

    position:relative;

    overflow:hidden;

    background:#fff;

    border-radius:24px;

    padding:32px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

    border:1px solid transparent;

}

.benefit-card::before{

    content:'';

    position:absolute;

    top:0;

    left:-140%;

    width:70%;

    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.45),
            transparent
        );

    transform:skewX(-18deg);

    transition:left .9s ease;

}

.benefit-card:hover::before{

    left:160%;

}

.benefit-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.06);

    border-color:
        rgba(237,127,26,.14);

}

.benefit-card i{

    font-size:28px;

    color:var(--orange);

    margin-bottom:20px;

}

.benefit-card h3{

    margin-bottom:10px;

}

/*
|--------------------------------------------------------------------------
| CART DRAWER
|--------------------------------------------------------------------------
*/

.cart-drawer{

    position:fixed;

    top:0;

    right:-500px;

    width:480px;

    height:100vh;

    background:#fff;

    z-index:9999;

    transition:.35s ease;

    display:flex;

    flex-direction:column;

    box-shadow:
        -10px 0 40px rgba(0,0,0,.08);

}

.cart-drawer.active{

    right:0;

}

.cart-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.4);

    opacity:0;

    visibility:hidden;

    transition:.3s ease;

    z-index:9998;

}

.cart-overlay.active{

    opacity:1;

    visibility:visible;

}

.cart-drawer-header{

    height:90px;

    padding:0 28px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    border-bottom:1px solid var(--border);

}

.cart-drawer-body{

    flex:1;

    overflow:auto;

    padding:24px;

}

/*
|--------------------------------------------------------------------------
| CATEGORIES ARROWS
|--------------------------------------------------------------------------
*/

.categories-wrapper{

    position:relative;

}

.categories-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:58px;

    height:58px;

    border-radius:50%;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:10;

    transition:all .3s ease;

}

.categories-arrow:hover{

    transform:
        translateY(-50%)
        scale(1.08);

    box-shadow:
        0 18px 40px rgba(0,0,0,.12);

}

.categories-prev{

    left:-28px;

}

.categories-next{

    right:-28px;

}

/*
|--------------------------------------------------------------------------
| FOOTER
|--------------------------------------------------------------------------
*/

.site-footer{

    position:relative;

    z-index:5;

    background:#020011;

    color:#fff;

    overflow:hidden;

}

.footer-container{

    max-width:1400px;

    margin:0 auto;

    padding:80px 80px 40px;

}

.footer-top{

    display:flex;

    justify-content:space-between;

    gap:80px;

    padding-bottom:60px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.footer-brand{

    max-width:420px;

}

.footer-logo{

    display:block;

    width:auto;

    height:72px;

    max-height:72px;

    object-fit:contain;

    margin-bottom:24px;

}

.footer-brand p{

    color:rgba(255,255,255,.65);

    line-height:1.8;

}

.footer-links{

    display:grid;

    grid-template-columns:repeat(3,minmax(145px,1fr));

    gap:48px;

}

.footer-column{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.footer-column h4{

    margin-bottom:8px;

    font-size:18px;

}

.footer-column a{

    color:rgba(255,255,255,.68);

    transition:all .25s ease;

}

.footer-column a:hover{

    color:#fff;

}

.footer-authority-badges{

    grid-column:1/-1;

    display:flex;

    flex-wrap:wrap;

    align-items:center;

    gap:18px;

    padding-top:4px;

}

.footer-authority-badge{

    display:block;

    width:min(240px,100%);

    border-radius:12px;

    background:#fff;

    box-shadow:0 18px 40px rgba(0,0,0,.18);

    transition:transform .25s ease, filter .25s ease, box-shadow .25s ease;

}

.footer-authority-badge:hover{

    transform:translateY(-2px);

    filter:brightness(1.04);

    box-shadow:0 22px 48px rgba(0,0,0,.24);

}

.footer-authority-badge img,
.footer-authority-badge svg{

    display:block;

    width:100%;

    height:auto;

    border-radius:12px;

}

.footer-bottom{

    padding-top:32px;

    color:rgba(255,255,255,.45);

    font-size:14px;

}

/*
|--------------------------------------------------------------------------
| MOBILE NAV FIX
|--------------------------------------------------------------------------
*/

@media(max-width:768px){

    .navbar{

        padding:0 20px;

        height:84px;

        min-height:84px;

    }

    .logo-img{

        height:58px;

        max-height:58px;

    }

    .desktop-nav{

        display:none;

    }

    .topbar{

        display:none;

    }

    .right-nav{

        gap:14px;

    }

    .burger-menu{

        display:flex;

    }

    body{

        --novaro-mobile-menu-offset:96px;

    }

    .mobile-overlay,
    .mobile-menu{

        top:var(--novaro-mobile-menu-offset);

    }

    body.mobile-menu-open{

        overflow:hidden;

    }

    .cart-trigger{

        width:42px;

        height:42px;

    }

}

/* ========================================
   CART TOAST
======================================== */

.novaro-cart-toast{

    position:fixed;
    top:112px;
    right:32px;

    z-index:99999;

    display:flex;
    align-items:center;
    gap:12px;

    max-width:min(420px, calc(100vw - 32px));

    background:#ffffff;

    color:#1d1d1f;

    padding:18px 22px;

    border:1px solid rgba(2,0,17,.06);

    border-radius:20px;

    box-shadow:
        0 22px 60px rgba(2,0,17,.12);

    font-size:18px;
    font-weight:800;

    line-height:1.25;

    animation:novaroToastIn .3s ease;

}

.novaro-cart-toast i{

    color:#22c55e;
    font-size:18px;

}

@media(max-width:768px){

    .novaro-cart-toast{

        top:88px;

        left:16px;

        right:16px;

        justify-content:center;

        max-width:none;

        padding:15px 16px;

        border-radius:18px;

        font-size:15px;

        text-align:center;

    }

}

.novaro-cart-toast.hide{

    opacity:0;
    transform:translateY(-10px);

    transition:
        opacity .3s ease,
        transform .3s ease;

}

@keyframes novaroToastIn{

    from{

        opacity:0;
        transform:translateY(-15px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}
