/*================ MENU HERO ================*/

:root {

    --primary:#775144;
    --primary-dark:#2A0800;

    --secondary:#C09891;

    --bg-color:#F7F3F0;
    --surface-color:#EFE3DD;
    --card-bg:#FFFFFF;

    --heading:#2A0800;
    --text-color:#3B2924;
    --text-light:#775144;

}

/*================ DARK MODE ================*/

[data-theme="dark"]{

    --primary:#C09891;
    --primary-dark:#E2B9AF;

    --secondary:#775144;

    --bg-color:#121212;
    --surface-color:#1E1E1E;
    --card-bg:#272727;

    --heading:#F5F5F5;
    --text-color:#ECECEC;
    --text-light:#BDBDBD;

}

/*================ RESET ================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--font-primary);
    background:var(--bg-color);
    color:var(--text-color);
    overflow-x:hidden;
    transition:.35s;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    border:none;
    outline:none;
    background:none;
    cursor:pointer;
}

ul{
    list-style:none;
}

/*================ CONTAINER ================*/

.container{

    width:min(1320px,92%);
    margin:auto;

}

.section{

    padding:110px 0;

}

/*================ SECTION TITLE ================*/

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:var(--primary);

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:.85rem;

    margin-bottom:12px;

}

.section-title h2{

    font-size:clamp(2rem,4vw,3rem);

    margin-bottom:16px;

    color:var(--heading);

}

.section-title p{

    color:var(--text-light);

    max-width:650px;

    margin:auto;

    line-height:1.9;

}

/*================ BUTTONS ================*/

.main-btn,
.offer-btn,
.about-btn,
.details-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:15px 34px;

    border-radius:999px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.main-btn:hover,
.menu-hero-btn:hover,
.offer-btn:hover,
.about-btn:hover,
.details-btn:hover{

    transform:translateY(-4px);

    background:var(--primary-dark);

    box-shadow:0 18px 40px rgba(0,0,0,.18);

}

.menu-hero-btn{
    background-color: var(--primary);
    color: #ECECEC;
    padding: 18px;
    border-radius: 8px;
    font-size: large;
    text-align:left;
}
/*================ HERO ================*/

.menu-hero{

    position:relative;

    width:100%;

    height:85vh;

    overflow:hidden;

}

.menu-hero-slider{

    width:100%;

    height:100%;

    position:relative;

}

.menu-hero-slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    visibility:hidden;
    transition:opacity 1s ease;
}

.menu-hero-slide.active{
    opacity:1;
    visibility:visible;
}


.menu-hero-slide img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/*================ OVERLAY ================*/

.menu-hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to left,
        rgba(0,0,0,.65),
        rgba(0,0,0,.35),
        rgba(0,0,0,.15)
    );

}

/*================ CONTENT ================*/

.menu-hero-content{

    position:absolute;

    top:50%;

    right:8%;

    transform:translateY(-50%);

    max-width:650px;

    color:#fff;

    z-index:5;

}

.menu-hero-subtitle{

    display:inline-block;

    letter-spacing:10px;

    text-transform:capitalize;

    color:var(--secondary);

    margin-bottom:20px;

    font-size:.95rem;

    text-align: center;

    margin-left: auto;

}

.menu-hero-content h1{

    font-size:clamp(3rem,6vw,5rem);

    line-height:1.05;

    margin-bottom:25px;

    font-weight:800;

}

.menu-hero-content p{

    font-size:1.05rem;

    line-height:2;

    margin-bottom:40px;

    max-width:560px;

    color:#f2f2f2;

}

/*================ HERO BUTTON ================*/

.hero-btn{

    padding:18px 42px;

    font-size:1rem;

}

/*================ HEADER ================*/

.header{

    position:relative;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    transition:.35s;

    padding:18px 0;

    background:transparent;

}

.header.scrolled{

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(18px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

[data-theme="dark"] .header.scrolled{

    background:rgba(20,20,20,.82);

}

/*================ HEADER CONTAINER ================*/

.header-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/*================ LOGO ================*/

.logo{

    display:flex;

    align-items:center;

    gap:14px;

    font-weight:700;

    font-size:1.2rem;

    color:var(--heading);

}

.logo img{

    width:52px;

    height:52px;

    object-fit:contain;

}

.logo span{

    letter-spacing:1px;

}    
/*================ NAVBAR ================*/

.navbar ul{

    display:flex;

    align-items:center;

    gap:36px;

}

.navbar a{

    position:relative;

    font-weight:500;

    color:var(--text-color);

    transition:.3s;

}

.navbar a:hover{

    color:var(--primary);

}

.navbar a.active{

    color:var(--primary);

}

/* underline */

.navbar a::after{

    content:"";

    position:absolute;

    right:0;

    bottom:-8px;

    width:0;

    height:2px;

    border-radius:99px;

    background:var(--primary);

    transition:.3s;

}

.navbar a:hover::after,
.navbar a.active::after{

    width:100%;

}

/*================ SEARCH ================*/

.menu-search{

    padding:70px 0 40px;

}

.search-box{

    max-width:650px;

    margin:auto;

    display:flex;

    align-items:center;

    gap:15px;

    background:var(--card-bg);

    border-radius:60px;

    padding:18px 28px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.search-box i{

    font-size:1.1rem;

    color:var(--primary);

}

.search-box input{

    width:100%;

    border:none;

    outline:none;

    background:transparent;

    color:var(--text-color);

    font-size:1rem;

}


/*================ MENU SECTION ================*/

.menu-section{

    padding:20px 0 100px;

}

.menu-category{

    margin-bottom:90px;

}

.category-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:28px;

}

.category-header h2{

    font-size:2rem;

    color:var(--heading);

}

.view-all{

    display:flex;

    align-items:center;

    gap:8px;

    color:var(--primary);

    font-weight:600;

    transition:.3s;

}

.view-all:hover{

    gap:14px;

}


/*================ PRODUCT SLIDER ================*/

.products-slider{

    display:flex;

    gap:24px;

    overflow-x:auto;

    scroll-behavior:smooth;

    padding-bottom:12px;

}

.products-slider::-webkit-scrollbar{

    display:none;

}

.products-slider{

    scrollbar-width:none;

}
/*================ PRODUCT CARD ================*/

.product-card{

    min-width:280px;

    max-width:280px;

    background:var(--card-bg);

    border-radius:24px;

    overflow:hidden;

    position:relative;

    transition:.35s ease;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    cursor:pointer;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}


/*================ PRODUCT IMAGE ================*/

.product-image{

    position:relative;

    overflow:hidden;

    background:var(--surface-color);

    height:250px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.product-image img{

    width:85%;

    transition:.45s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}


/*================ BADGE ================*/

.product-badge{

    position:absolute;

    top:18px;

    left:18px;

    background:var(--primary);

    color:#fff;

    padding:6px 14px;

    border-radius:30px;

    font-size:.75rem;

    font-weight:600;

}


/*================ PRODUCT INFO ================*/

.product-info{

    padding:22px;

}

.product-category{

    display:block;

    font-size:.82rem;

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:8px;

}

.product-title{

    font-size:1.35rem;

    color:var(--heading);

    margin-bottom:10px;

}

.product-description{

    color:var(--text-light);

    line-height:1.7;

    margin-bottom:18px;

    min-height:52px;

}


/*================ RATING ================*/

.product-rating{

    display:flex;

    align-items:center;

    gap:4px;

    color:#FDBA12;

    margin-bottom:18px;

    font-size:.9rem;

}


/*================ PRICE ================*/

.product-price{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:22px;

}

.product-price h4{

    font-size:1.4rem;

    color:var(--heading);

}


/*================ CARD BUTTONS ================*/

.product-buttons{

    display:flex;

    gap:12px;

}

.view-btn{

    flex:1;

    height:48px;

    border-radius:14px;

    border:2px solid var(--primary);

    background:transparent;

    color:var(--primary);

    font-weight:600;

    transition:.3s;

}

.view-btn:hover{

    background:var(--primary);

    color:#fff;

}

.add-btn{

    width:52px;

    height:48px;

    border:none;

    border-radius:14px;

    background:var(--primary);

    color:#fff;

    font-size:1rem;

    transition:.3s;

}

.add-btn:hover{

    transform:scale(1.08);

    background:var(--primary-dark);

}
/*================ QUICK VIEW ================*/

.quick-view{

    position:fixed;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    visibility:hidden;

    opacity:0;

    transition:.35s;

    z-index:99999;

}

.quick-view.active{

    visibility:visible;

    opacity:1;

}

.quick-view-content{

    width:min(950px,90%);

    background:var(--card-bg);

    border-radius:28px;

    display:grid;

    grid-template-columns:1fr 1fr;

    overflow:hidden;

    position:relative;

    transform:translateY(40px);

    transition:.35s;

}

.quick-view.active .quick-view-content{

    transform:translateY(0);

}


/*================ MODAL IMAGE ================*/

.quick-view-image{

    background:var(--surface-color);

    display:flex;

    align-items:center;

    justify-content:center;

    padding:50px;

}

.quick-view-image img{

    width:90%;

}


/*================ MODAL INFO ================*/

.quick-view-info{

    padding:45px;

}

.quick-view-info span{

    color:var(--primary);

    text-transform:uppercase;

    font-size:.85rem;

}

.quick-view-info h2{

    margin:14px 0;

    font-size:2rem;

    color:var(--heading);

}

.quick-view-info p{

    color:var(--text-light);

    line-height:1.8;

    margin-bottom:28px;

}

.modal-price{

    font-size:2rem;

    color:var(--primary);

    font-weight:700;

    margin-bottom:28px;

}


/*================ QUANTITY ================*/

.quantity-selector{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:35px;

}

.quantity-selector button{

    width:44px;

    height:44px;

    border:none;

    border-radius:12px;

    background:var(--surface-color);

    cursor:pointer;

    transition:.3s;

}

.quantity-selector button:hover{

    background:var(--primary);

    color:#fff;

}

.quantity-selector span{

    font-size:1.2rem;

    color:var(--heading);

}


/*================ ADD BUTTON ================*/

.add-cart-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:16px;

    background:var(--primary);

    color:#fff;

    font-size:1rem;

    cursor:pointer;

    transition:.3s;

}

.add-cart-btn:hover{

    background:var(--primary-dark);

}


/*================ CLOSE ================*/

.close-modal{

    position:absolute;

    top:18px;

    right:18px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

}


/*================ MINI CART ================*/

.mini-cart{

    position:fixed;

    top:0;

    right:-420px;

    width:400px;

    max-width:100%;

    height:100vh;

    background:var(--card-bg);

    z-index:99999;

    transition:.35s;

    display:flex;

    flex-direction:column;

    box-shadow:-10px 0 30px rgba(0,0,0,.15);

}

.mini-cart.active{

    right:0;

}


/*================ CART HEADER ================*/

.mini-cart-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px;

    border-bottom:1px solid rgba(0,0,0,.08);

}

.mini-cart-header h3{

    font-size:1.4rem;

}


/*================ CART ITEMS ================*/

.mini-cart-items{

    flex:1;

    overflow-y:auto;

    padding:20px;

}


/*================ CART FOOTER ================*/

 .mini-cart-footer{

    padding:25px;

    border-top:1px solid rgba(0,0,0,.08);

}

.subtotal{

    display:flex;

    justify-content:space-between;

    margin-bottom:25px;

}

.cart-page-btn,
.checkout-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    height:54px;

    border-radius:14px;

    text-decoration:none;

    margin-bottom:15px;

}

.cart-page-btn{

    border:2px solid var(--primary);

    color:var(--primary);

}

.checkout-btn{

    background:var(--primary);

    color:#fff;

}


/*================ OVERLAY ================*/

.overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(5px);

    visibility:hidden;

    opacity:0;

    transition:.35s;

    z-index:9999;

}

.overlay.active{

    visibility:visible;

    opacity:1;

}

/*================ PRODUCT ANIMATIONS ================*/

/*---------- ADD TO CART BUTTON ----------*/

.add-btn{
    position:relative;
    overflow:hidden;
}

.add-btn.added{
    background:var(--primary-dark);
    transform:scale(1.05);
}

.add-btn.added i{
    animation:checkPop .3s ease;
}

@keyframes checkPop{

    0%{
        transform:scale(0);
    }

    70%{
        transform:scale(1.25);
    }

    100%{
        transform:scale(1);
    }

}


/*---------- FLY TO CART ----------*/

.fly-to-cart{

    transition:
        left .5s cubic-bezier(.4,0,.2,1),
        top .5s cubic-bezier(.4,0,.2,1),
        width .5s ease,
        height .5s ease,
        opacity .5s ease,
        transform .5s ease;

}


/*---------- CART BOUNCE ----------*/

.cart-bounce{

    animation:cartBounce .4s ease;

}

@keyframes cartBounce{

    0%{
        transform:scale(1);
    }

    40%{
        transform:scale(1.25);
    }

    70%{
        transform:scale(.9);
    }

    100%{
        transform:scale(1);
    }

}


/*---------- PRODUCT HIGHLIGHT ----------*/

.product-highlight{

    animation:
        productHighlight 2s ease;

}

@keyframes productHighlight{

    0%{
        box-shadow:
            0 10px 25px rgba(0,0,0,.08);
    }

    25%{
        box-shadow:
            0 0 0 4px var(--primary),
            0 20px 45px rgba(119,81,68,.25);
    }

    70%{
        box-shadow:
            0 0 0 4px var(--primary),
            0 20px 45px rgba(119,81,68,.25);
    }

    100%{
        box-shadow:
            0 10px 25px rgba(0,0,0,.08);
    }

}


/*---------- CATEGORY HIGHLIGHT ----------*/

.category-highlight{

    animation:categoryHighlight 1.5s ease;

}

@keyframes categoryHighlight{

    0%{
        transform:translateY(0);
    }

    30%{
        transform:translateY(-5px);
    }

    70%{
        transform:translateY(-5px);
    }

    100%{
        transform:translateY(0);
    }

}

/*================ NO RESULTS ================*/

.no-results{

    min-width:280px;

    min-height:180px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:30px;

    color:var(--text-light);

}

.no-results i{

    font-size:2rem;

    color:var(--primary);

    margin-bottom:12px;

}

.no-results h3{

    color:var(--heading);

    margin-bottom:6px;

}

.no-results p{

    font-size:.9rem;

}


/*================ EMPTY CART ================*/

.empty-cart{

    min-height:250px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:var(--text-light);

}

.empty-cart i{

    font-size:3rem;

    color:var(--primary);

    margin-bottom:18px;

}

.empty-cart p{

    font-size:1rem;

}


/*================ CATEGORY HIGHLIGHT ================*/

.menu-category.category-highlight{

    position:relative;

}

.menu-category.category-highlight::before{

    content:"";

    position:absolute;

    top:-15px;

    left:0;

    width:4px;

    height:100%;

    background:var(--primary);

    border-radius:10px;

    animation:categoryLine 1.5s ease;

}

@keyframes categoryLine{

    0%{

        opacity:0;

        transform:scaleY(.3);

    }

    30%{

        opacity:1;

        transform:scaleY(1);

    }

    70%{

        opacity:1;

        transform:scaleY(1);

    }

    100%{

        opacity:0;

        transform:scaleY(.3);

    }

}


/*================ CART ITEM ANIMATION ================*/

.mini-cart-item{

    animation:cartItemIn .35s ease;

}

@keyframes cartItemIn{

    from{

        opacity:0;

        transform:translateX(20px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}
/*================ PRODUCT CARD POLISH ================*/

.product-card{
    user-select:none;
}

.product-card img{
    display:block;
}

.product-buttons button{
    cursor:pointer;
}


/*================ QUICK VIEW POLISH ================*/

.quick-view-content{
    max-height:90vh;
}

.quick-view-image img{
    max-height:420px;
    object-fit:contain;
}

.close-modal{
    z-index:2;
    color:var(--heading);
    transition:.3s ease;
}

.close-modal:hover{
    transform:rotate(90deg);
    background:var(--primary);
    color:#fff;
}


/*================ MINI CART POLISH ================*/

.mini-cart-header button{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:transparent;
    color:var(--heading);
    cursor:pointer;
    transition:.3s ease;
}

.mini-cart-header button:hover{
    background:var(--surface-color);
    transform:rotate(90deg);
}

.mini-cart-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:15px 0;
    border-bottom:1px solid rgba(0,0,0,.07);
}

.mini-cart-item-image{
    width:70px;
    height:70px;
    flex-shrink:0;
    border-radius:14px;
    overflow:hidden;
    background:var(--surface-color);
}

.mini-cart-item-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.mini-cart-item-info{
    flex:1;
}

.mini-cart-item-info h4{
    color:var(--heading);
    margin-bottom:5px;
}

.mini-cart-item-info > span{
    color:var(--primary);
    font-weight:600;
}

.cart-item-controls{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:8px;
}

.cart-item-controls button{
    width:27px;
    height:27px;
    border:none;
    border-radius:8px;
    background:var(--surface-color);
    cursor:pointer;
    transition:.25s ease;
}

.cart-item-controls button:hover{
    background:var(--primary);
    color:#fff;
}

.remove-cart-item{
    border:none;
    background:transparent;
    color:#999;
    cursor:pointer;
    transition:.25s ease;
}

.remove-cart-item:hover{
    color:#c0392b;
    transform:scale(1.1);
}


/*================ CART BUTTON ================*/

.cart-page-btn,
.checkout-btn{
    transition:.3s ease;
}

.cart-page-btn:hover{
    background:var(--primary);
    color:#fff;
}

.checkout-btn:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
}


/*================ DARK MODE ================*/

[data-theme="dark"] .search-box,
[data-theme="dark"] .product-card,
[data-theme="dark"] .quick-view-content,
[data-theme="dark"] .mini-cart{
    box-shadow:0 15px 40px rgba(0,0,0,.3);
}

[data-theme="dark"] .mini-cart-item{
    border-color:rgba(255,255,255,.08);
}

/*================ HORIZONTAL PRODUCT SLIDER ================*/

.products-slider{
    scroll-snap-type:x proximity;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-x:contain;
}

.product-card{
    scroll-snap-align:start;
}


/*================ SLIDER EDGE FADE ================*/

.menu-category{
    position:relative;
}


/*================ PRODUCT IMAGE POLISH ================*/

.product-image img{
    object-fit:contain;
    user-select:none;
    -webkit-user-drag:none;
}


/*================ BADGE POLISH ================*/

.product-badge{
    z-index:2;
    white-space:nowrap;
}


/*================ VIEW BUTTON POLISH ================*/

.view-btn,
.add-btn{
    cursor:pointer;
}

.view-btn:active,
.add-btn:active{
    transform:scale(.96);
}


/*================ ACCESSIBILITY ================*/

.view-btn:focus-visible,
.add-btn:focus-visible,
.close-modal:focus-visible,
.cart-page-btn:focus-visible,
.checkout-btn:focus-visible{
    outline:3px solid var(--secondary);
    outline-offset:3px;
}


/*================ REDUCED MOTION ================*/

@media (prefers-reduced-motion:reduce){

    .product-card,
    .product-card img,
    .view-btn,
    .add-btn,
    .quick-view,
    .quick-view-content,
    .mini-cart,
    .overlay{
        transition:none;
    }

    .product-highlight,
    .category-highlight,
    .cart-bounce{
        animation:none;
    }

    .products-slider{
        scroll-behavior:auto;
    }

}

/*================ PRODUCT INTERACTION ================*/

.product-card:focus-within{

    box-shadow:
        0 0 0 2px var(--secondary),
        0 20px 40px rgba(0,0,0,.12);

}


/*================ BUTTON FEEDBACK ================*/

.view-btn:active{

    background:var(--primary);

    color:#fff;

}

.add-btn:active{

    background:var(--primary-dark);

}


/*================ QUICK VIEW BACKDROP ================*/

.quick-view{

    pointer-events:none;

}

.quick-view.active{

    pointer-events:auto;

}


/*================ CART SCROLLBAR ================*/

.mini-cart-items{

    scrollbar-width:thin;

    scrollbar-color:
        var(--secondary)
        transparent;

}

.mini-cart-items::-webkit-scrollbar{

    width:5px;

}

.mini-cart-items::-webkit-scrollbar-track{

    background:transparent;

}

.mini-cart-items::-webkit-scrollbar-thumb{

    background:var(--secondary);

    border-radius:10px;

}


/*================ IMAGE LOADING ================*/

.product-image img,
.quick-view-image img,
.mini-cart-item-image img{

    transition:
        opacity .3s ease,
        transform .45s ease;

}

.products-slider {
    cursor: grab;
}

.products-slider.dragging {
    cursor: grabbing;
    user-select: none;
}

.mobile-btn{
    display:flex;
    width:50px;
    height:50px;
    align-items:center;
    justify-content:center;
    }

    .mobile-btn i{
    font-size:1.3rem;
    }

    /*================ MOBILE (max-width: 768px) ================*/
@media(max-width: 768px) {

    .section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 45px;
    }

    /* HEADER & HERO MOBILE */
    .header {
        padding: 12px 0;
    }

    .logo span {
        display: none;
    }

    .header-btn {
        width: 44px;
        height: 44px;
    }

    .hero {
        height: 70vh;
        min-height: 480px;
        margin-top: 0;
    }

    .hero-content {
        right: 50%;
        transform: translate(50%, -50%);
        width: 90%;
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 15px;
    }
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .hero-btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
    }

    .prev {
        right: 15px;
    }

    .next {
        left: 15px;
    }

    .slider-dots {
        bottom: 20px;
    }

    /* MOBILE HERO SLIDER SECTION */
    .hero-slider-section {
        height: 65vh;
        min-height: 520px;
    }

    .slider-container,
    .slide,
    .slide-bg {
        height: 100%;
    }

    .slide-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .slide-content {
        width: 90%;
        max-width: 100%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        padding: 0 20px;
    }

    .slide-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .slide-description {
        font-size: 1rem;
        line-height: 1.9;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: .95rem;
    }

    /* GRID LAYOUTS FOR MOBILE */
    .products-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-image {
        height: 280px;
    }

    .product-content {
        padding: 22px;
    }

    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .footer {
        padding: 60px 0 25px;
    }

    .footer-grid {
        text-align: center;
    }

    .socials {
        justify-content: center;
    }

    .mobile-btn{
        display: block;
    }
}

.mobile-btn{
    display: none;
}

/* ================= SLIDER ARROWS ================= */

.products-slider-wrapper {
    position: relative;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: 100%;
    gap: 12px;
}


/* خود اسلایدر */

.products-slider-wrapper .products-slider {
    flex: 1 1 auto;
    min-width: 0;
}


/* دکمه‌ها */

.products-slider-wrapper .slider-btn {
    position: relative !important;

    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;

    transform: none !important;

    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 20px;
    border-radius: 50%;
    background-color: #8a6356;
    color: #faf8f8;

    cursor: pointer;
    z-index: 10;
}

/* Uniform menu cards */
.product-card {
    display: flex;
    flex-direction: column;
    height: 640px;
}

.product-image {
    flex: 0 0 250px;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
}

.product-title {
    display: -webkit-box;
    height: 3.4rem;
    min-height: 3.4rem;
    overflow: hidden;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-description {
    display: -webkit-box;
    height: 5.1rem;
    min-height: 5.1rem;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.product-rating {
    min-height: 1.4rem;
}

.product-price {
    margin-top: auto;
}

.product-buttons {
    flex: 0 0 48px;
    width: 100%;
}

.view-btn,
.add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .product-card {
        height: 610px;
    }

    .product-image {
        flex-basis: 220px;
        height: 220px;
    }
}
