/* ==========================
   GLOBAL
========================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f8fafc;
    color:#222;
    overflow-x:hidden;
}

section{
    padding:80px 8%;
}

/* ==========================
   BUTTONS
========================== */
.btn{
    display:inline-block;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.primary-btn{
    background:#00b140;
    color:#fff;
}

.primary-btn:hover{
    background:#008c33;
    transform:translateY(-3px);
}

/* ==========================
   NAVBAR
========================== */
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
    background:rgba(0,0,0,0.7);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.logo img{
    height:70px;
    width:auto;
}

.nav-links{
    display:flex;
    gap:30px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#fff;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover,
.nav-links .active{
    color:#00ff84;
}

/* ==========================
   HERO
========================== */
.products-list-hero{
    min-height:50vh;
    background:
        linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:140px 8% 80px;
}

.products-list-hero h1{
    font-size:55px;
    margin-bottom:15px;
}

.products-list-hero p{
    font-size:20px;
    max-width:800px;
    line-height:1.8;
}

/* ==========================
   PRODUCTS SECTION
========================== */
.shopping-products{
    background:#f8fafc;
}

.shopping-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.shopping-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    padding-bottom:30px;
    text-align:center;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.shopping-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.shopping-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.shopping-card h3{
    font-size:24px;
    margin:20px 15px 10px;
}

.shopping-card p{
    color:#555;
    line-height:1.8;
    padding:0 20px;
    margin-bottom:20px;
}

.shopping-price{
    font-size:24px;
    font-weight:700;
    color:#00b140;
    margin-bottom:20px;
}

/* ==========================
   FOOTER
========================== */
.footer{
    background:#052e16;
    color:white;
    padding:70px 8% 30px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-box h2,
.footer-box h3{
    margin-bottom:20px;
}

.footer-box p{
    color:#d1d5db;
    line-height:1.8;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    text-decoration:none;
    color:#d1d5db;
}

.footer-box ul li a:hover{
    color:#00ff84;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:40px;
    padding-top:20px;
}

/* ==========================
   WHATSAPP BUTTON
========================== */
.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    z-index:999;
}

/* ==========================
   TABLET
========================== */
@media(max-width:992px){

    .navbar{
        padding:15px 5%;
    }

    .products-list-hero h1{
        font-size:45px;
    }

    .products-list-hero p{
        font-size:18px;
    }
}

/* ==========================
   MOBILE
========================== */
@media(max-width:768px){

    section{
        padding:60px 5%;
    }

    .navbar{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .logo img{
        height:55px;
    }

    .products-list-hero{
        padding:160px 5% 80px;
    }

    .products-list-hero h1{
        font-size:34px;
    }

    .products-list-hero p{
        font-size:16px;
    }

    .shopping-grid{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }
}

/* ==========================
   SMALL MOBILE
========================== */
@media(max-width:480px){

    .products-list-hero h1{
        font-size:28px;
    }

    .products-list-hero p{
        font-size:15px;
    }

    .shopping-card img{
        height:220px;
    }

    .shopping-card h3{
        font-size:22px;
    }

    .shopping-price{
        font-size:20px;
    }

    .btn{
        width:90%;
        text-align:center;
    }
  
    .whatsapp-btn{
        width:55px;
        height:55px;
        font-size:24px;
        right:15px;
        bottom:15px;
    }
}