body::before{

    content:"";

    position:fixed;

    width:600px;
    height:600px;

    background:rgba(200,155,91,.08);

    border-radius:50%;

    top:-250px;
    right:-250px;

    filter:blur(50px);

    z-index:-2;

}

body::after{

    content:"";

    position:fixed;

    width:450px;
    height:450px;

    background:rgba(94,139,90,.08);

    border-radius:50%;

    bottom:-180px;
    left:-180px;

    filter:blur(60px);

    z-index:-2;

}

/* ==========================================
        GLOBAL
========================================== */

img{

    display:block;
    max-width:100%;

}

a{

    text-decoration:none;
    color:inherit;

}

button{

    border:none;
    cursor:pointer;
    font-family:inherit;

}

section{

    padding:90px 8%;

}

/* ==========================================
        HERO
========================================== */

.hero{

    min-height:90vh;

    display:flex;

    justify-content:flex-start;

    align-items:center;

    position:relative;

    overflow:hidden;

}

/* Decorative Circle */

.hero::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        rgba(200,155,91,.18),
        rgba(232,216,195,.18)
    );

    right:-150px;
    top:80px;

    z-index:-1;

}

.hero::after{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    border:25px solid rgba(200,155,91,.08);

    right:140px;
    bottom:20px;

    z-index:-1;

}

/* ==========================================
        HERO CONTENT
========================================== */

.hero-content{

    max-width:650px;

}

/* ==========================================
        TAG
========================================== */

.tag{

    display:inline-block;

    background:rgba(200,155,91,.12);

    color:var(--secondary);

    padding:10px 20px;

    border-radius:50px;

    font-size:.9rem;

    font-weight:600;

    border:1px solid rgba(200,155,91,.25);

    letter-spacing:.5px;

}

/* ==========================================
        HERO TITLE
========================================== */

.hero h1{

    font-size:4rem;

    line-height:1.15;

    margin:25px 0 20px;

    color:var(--primary);

    font-weight:800;

}

.hero h1 span{

    color:var(--secondary);

}

/* ==========================================
        HERO PARAGRAPH
========================================== */

.hero p{

    color:var(--text-muted);

    font-size:1.1rem;

    line-height:1.9;

    max-width:580px;

    margin-bottom:40px;

}

/* ==========================================
        BUTTONS
========================================== */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/* Order Button */

.order-btn{

    background:linear-gradient(
        135deg,
        var(--secondary),
        #b88643
    );

    color:white;

    padding:16px 38px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 12px 25px rgba(200,155,91,.30);

}

.order-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(200,155,91,.45);

}

/* Menu Button */

.menu-btn{

    background:white;

    color:var(--primary);

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

    padding:16px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.menu-btn:hover{

    background:var(--primary);

    color:white;

    border-color:var(--primary);

}

/* ==========================================
        SMALL FLOATING DOTS
========================================== */

.hero-content::before{

    content:"";

    position:absolute;

    width:14px;
    height:14px;

    border-radius:50%;

    background:var(--secondary);

    left:70%;

    top:22%;

    opacity:.35;

}

.hero-content::after{

    content:"";

    position:absolute;

    width:8px;
    height:8px;

    border-radius:50%;

    background:var(--success);

    left:78%;

    top:33%;

    opacity:.45;

}

/* ==========================================
        RESPONSIVE
========================================== */

@media(max-width:992px){

    .hero{

        min-height:auto;

        text-align:center;

        justify-content:center;

    }

    .hero-content{

        max-width:700px;

    }

    .hero h1{

        font-size:3rem;

    }

    .hero p{

        margin:auto auto 35px;

    }

    .hero-buttons{

        justify-content:center;

    }

}

@media(max-width:768px){

    section{

        padding:70px 25px;

    }

    .hero h1{

        font-size:2.4rem;

    }

    .hero p{

        font-size:1rem;

    }

    .order-btn,
    .menu-btn{

        width:100%;

    }

}

@media(max-width:480px){

    .hero h1{

        font-size:2rem;

    }

}

/* ==========================================
            SECTION TITLE
========================================== */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:2.4rem;

    font-weight:700;

    color:var(--primary);

    position:relative;

    display:inline-block;

    padding-bottom:15px;

}

.section-title h2::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:70px;
    height:4px;

    border-radius:20px;

    background:var(--secondary);

}

.section-title p{

    margin-top:18px;

    color:var(--text-muted);

    font-size:1rem;

}

/* ==========================================
            SECTION SPACING
========================================== */

.categories,
.featured,
.why-us,
.promotion{

    max-width:1300px;

    margin:auto;

}

/* ==========================================
            CATEGORIES
========================================== */

.category-container{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

}

.category{

    display:flex;

    align-items:center;

    gap:12px;

    padding:16px 28px;

    background:white;

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

    border-radius:50px;

    font-weight:600;

    color:var(--text);

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.04);

}

.category i{

    font-size:18px;

    color:var(--secondary);

    transition:.35s;

}

.category:hover{

    transform:translateY(-6px);

    background:var(--secondary);

    color:white;

    box-shadow:0 18px 35px rgba(200,155,91,.28);

}

.category:hover i{

    color:white;

}

.category.active{

    background:linear-gradient(
        135deg,
        var(--secondary),
        #b88643
    );

    color:white;

    border:none;

    box-shadow:0 15px 30px rgba(200,155,91,.35);

}

.category.active i{

    color:white;

}

/* ==========================================
            PRODUCTS GRID
========================================== */

.product-container{

    display:flex;
    align-items:stretch;
    gap:28px;
    overflow-x:auto;
    overflow-y:hidden;
    padding:6px 6px 18px;
    scroll-snap-type:x proximity;
    scroll-behavior:smooth;

}

.product-container::-webkit-scrollbar{

    height:8px;

}

.product-container::-webkit-scrollbar-thumb{

    background:var(--border);
    border-radius:10px;

}

/* ==========================================
            PRODUCT CARD
========================================== */

.product-card{


    background:white;
    border-radius:28px;
    overflow:hidden;
    transition:.4s;
    border:1px solid var(--border);
    box-shadow:0 15px 35px rgba(0,0,0,.05);

    flex:0 0 270px;
    scroll-snap-align:start;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 55px rgba(0,0,0,.12);

}

/* ==========================================
            PRODUCT IMAGE
========================================== */

.product-image{

    height:250px;

    overflow:hidden;

    background:#f9f9f9;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

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

    transform:scale(1.12);

}

/* ==========================================
            PRODUCT INFO
========================================== */

.product-info{

    padding:24px;

}

.product-info h3{

    font-size:1.3rem;

    color:var(--primary);

    margin-bottom:12px;

}

.description{

    color:var(--text-muted);

    line-height:1.8;

    font-size:.95rem;

    margin-bottom:22px;

}

/* ==========================================
            PRODUCT FOOTER
========================================== */

.product-bottom{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.price{

    font-size:1.5rem;

    font-weight:700;

    color:var(--secondary);

}

/* ==========================================
            CART BUTTON
========================================== */

.add-cart{

    width:50px;

    height:50px;

    border-radius:50%;

    background:var(--primary);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.add-cart i{

    font-size:18px;

}

.add-cart:hover{

    background:var(--secondary);

    transform:rotate(10deg) scale(1.1);

}

/* ==========================================
            PROMOTION
========================================== */

.promotion{

    position:relative;

    overflow:hidden;

    margin-top:110px;

    border-radius:35px;

    background:linear-gradient(
        135deg,
        var(--primary),
        #343434
    );

    color:white;

    padding:80px 40px;

    text-align:center;

}

/* Decorative Circles */

.promotion::before{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

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

    top:-120px;

    left:-100px;

}

.promotion::after{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:rgba(200,155,91,.18);

    bottom:-90px;

    right:-80px;

}

.promo-content{

    position:relative;

    z-index:2;

}

.promotion h2{

    color:white;

    font-size:2.8rem;

    margin-bottom:18px;

}

.promotion p{

    max-width:650px;

    margin:0 auto 35px;

    line-height:1.8;

    color:#dddddd;

}

.promotion button{

    padding:16px 40px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--secondary),
        #b88643
    );

    color:white;

    font-size:16px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 30px rgba(200,155,91,.35);

}

.promotion button:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(200,155,91,.5);

}

.promo-order-btn{

    display:inline-block;

    padding:16px 40px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--secondary),
        #b88643
    );

    color:white;

    font-size:16px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 30px rgba(200,155,91,.35);

}

.promo-order-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(200,155,91,.5);

}

/* ==========================================
            FLASH ALERTS
========================================== */

.home-alert{

    max-width:1300px;

    margin:20px auto 0;

}

/* ==========================================
            RESPONSIVE
========================================== */

@media(max-width:992px){

    .product-card{

        flex-basis:240px;

    }

}

@media(max-width:768px){

    .section-title h2{

        font-size:2rem;

    }

    .promotion{

        padding:60px 25px;

    }

    .promotion h2{

        font-size:2rem;

    }

}

@media(max-width:600px){

    .product-card{

        flex-basis:200px;

    }

    .category{

        width:100%;

        justify-content:center;

    }

}

/* ==========================================
            WHY CHOOSE US
========================================== */

.why-us{

    max-width:1300px;

    margin:100px auto;

}


/* Feature Grid */

.features{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}


/* Feature Card */

.feature-card{

    background:var(--surface);
    border:1px solid var(--border);
    border-radius:28px;
    padding:35px 25px;
    text-align:center;
    transition:.4s;
    position:relative;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.05);

}


/* Top Glow */

.feature-card::before{

    content:"";

    position:absolute;

    width:100px;

    height:100px;

    background:rgba(200,155,91,.15);

    border-radius:50%;

    top:-50px;

    right:-50px;

    transition:.4s;

}


.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}


.feature-card:hover::before{

    width:200px;

    height:200px;

}


/* Icon */

.feature-card i{

    width:75px;

    height:75px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 25px;

    border-radius:50%;

    background:rgba(200,155,91,.12);

    color:var(--secondary);

    font-size:32px;

    transition:.4s;

}


.feature-card:hover i{

    background:var(--secondary);

    color:white;

    transform:rotateY(360deg);

}


/* Title */

.feature-card h3{

    font-size:20px;

    margin-bottom:12px;

    color:var(--primary);

}


/* Description */

.feature-card p{

    color:var(--text-muted);

    line-height:1.7;

    font-size:14px;

}


/* ==========================================
            FOOTER
========================================== */


footer{

    background:

    linear-gradient(
        135deg,
        #151515,
        #242424
    );

    color:white;

    padding:70px 8% 25px;

    margin-top:100px;

    position:relative;

    overflow:hidden;

}


/* Footer Glow */

footer::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(200,155,91,.15);

    border-radius:50%;

    top:-150px;

    right:-100px;

}


.footer-content{

    max-width:1300px;

    margin:auto;

    display:grid;

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

    gap:50px;

    position:relative;

    z-index:2;

}


/* Footer Titles */

.footer-content h3{

    font-size:24px;

    margin-bottom:20px;

    color:var(--secondary);

}


/* Footer Links */

.footer-links{

    display:flex;

    flex-direction:column;

    gap:12px;

}


.footer-links a{

    color:#ddd;

    transition:.3s;

}


.footer-links a:hover{

    color:var(--secondary);

    padding-left:8px;

}


/* Contact */

.footer-contact p{

    color:#ddd;

    margin-bottom:10px;

}


/* Copyright */

.copyright{

    margin-top:50px;

    padding-top:20px;

    text-align:center;

    color:#999;

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

}


/* ==========================================
            GLOBAL ANIMATION
========================================== */


.product-card,
.feature-card,
.category{

    animation:fadeUp .7s ease;

}


@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}



/* ==========================================
            RESPONSIVE DESIGN
========================================== */


@media(max-width:1100px){


    .features{

        grid-template-columns:repeat(2,1fr);

    }


}



@media(max-width:768px){


    footer{

        padding:60px 25px 20px;

    }


    .footer-content{

        grid-template-columns:1fr;

        text-align:center;

    }


    .footer-links{

        align-items:center;

    }


}



@media(max-width:500px){


    .features{

        grid-template-columns:1fr;

    }


    .feature-card{

        padding:30px 20px;

    }


}