
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');


:root{

    --primary:#0E8A4A;
    --primary-dark:#065F46;
    --primary-light:#22C55E;

    --black:#0B0B0B;
    --black2:#151515;

    --white:#ffffff;

    --grey:#777;
    --light:#F6F8F7;

    --border:#EAEAEA;

    --radius:18px;

    --shadow:0 15px 40px rgba(0,0,0,.08);


}

/*==========================================================
RESET
==========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    font-family:'Inter',sans-serif;
    color:#222;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section,
header,
footer{
    width:100%;
}

/*==========================================================
CONTAINER
==========================================================*/

.container{
    width:min(92%,1250px);
    margin:auto;
}

/*==========================================================
COMMON
==========================================================*/

section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-tag{

    display:inline-block;
    padding:8px 20px;

    background:#E8FFF1;

    color:var(--primary);

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:18px;

}

.section-title h2{

    font-family:'Poppins',sans-serif;

    font-size:42px;

    color:#111;

    margin-bottom:18px;

}

.section-title p{

    max-width:720px;

    margin:auto;

    color:#666;

}

/*==========================================================
BUTTONS
==========================================================*/

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:15px 35px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

   

    box-shadow:0 10px 25px rgba(14,138,74,.28);

}

.btn:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}

.btn-outline{

    margin-left:15px;

    background:transparent;

    color:#fff;

    border:2px solid rgba(255,255,255,.35);

    box-shadow:none;

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

/*==========================================================
HEADER
==========================================================*/

header{

    position:relative;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

     background: #55B463 !important;
}

header .container{

    display:flex;

    justify-content:space-between;
    align-items:center;

    height:82px;

}

.logo a{
    color:inherit;
}

.logo h2{

    color:#fff;

    font-size:32px;

    font-family:'Poppins';

    font-weight:800;

}

.logo span{

    color:black;

}

/*==========================================================
DESKTOP NAVIGATION
==========================================================*/

#navbar ul{

    display:flex;

    align-items:center;

    gap:35px;

}

#navbar ul li a{

    color:#fff;

    font-weight:500;

    transition:.3s;

    position:relative;

}

#navbar ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#55B463 !important;

    transition:.3s;

}

#navbar ul li a:hover::after{

    width:100%;

}

#navbar ul li a:hover{

    color:var(--primary-light);

}

/*==========================================================
MOBILE TOGGLE
==========================================================*/

.mobile-toggle{

    display:none;

    color:#fff;

    font-size:30px;

    cursor:pointer;

    user-select:none;

}

/*==========================================================
MOBILE NAVIGATION
(FIXED VERSION)
==========================================================*/

@media(max-width:768px){

header .container{

    height:75px;

}

.mobile-toggle{

    display:block;

}

#navbar{

    position:absolute;

    top:75px;

    left:0;

    width:100%;

    background:#56B35E;

    overflow:hidden;

    max-height:0;

    transition:max-height .4s ease;

    z-index:999;

}

#navbar.active{

    max-height:500px;

    border-top:1px solid rgba(255,255,255,.08);

}

#navbar ul{

    display:flex;

    flex-direction:column;

    gap:0;

}

#navbar ul li{

    width:100%;

}

#navbar ul li a{

    display:block;

    padding:18px 25px;

    border-bottom:1px solid rgba(255,255,255,.05);

}

#navbar ul li a::after{

    display:none;

}

}

/*==========================================================
HERO
==========================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
    linear-gradient(rgba(0,0,0,.78),rgba(0,0,0,.78)),
    url("../images/doris-hero-img.png");

    background-size:cover;

    background-position:center;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.hero-left{

    color:#fff;

}

.badge{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(34,197,94,.15);

    border:1px solid rgba(34,197,94,.30);

    color:#8CF7B6;

    margin-bottom:25px;

}

.hero-left h1{

    font-family:'Poppins';

    font-size:68px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero-left h1 span{

    color:var(--primary-light);

}

.hero-left p{

    color:#ddd;

    font-size:18px;

    margin-bottom:35px;

}

.hero-features{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin-bottom:40px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:12px;

}

.hero-features i{

    color:var(--primary-light);

    font-size:22px;

}

.hero-image{

    position:relative;

}

.hero-image img{

    position:relative;

    z-index:5;

    animation:float 5s ease-in-out infinite;

}

.circle{

    position:absolute;

    border-radius:50%;

}

.circle.one{

    width:260px;
    height:260px;

    background:rgba(34,197,94,.12);

    top:-40px;
    right:-40px;

}

.circle.two{

    width:180px;
    height:180px;

    background:rgba(255,255,255,.08);

    bottom:30px;
    left:-20px;

}

.circle.three{

    width:80px;
    height:80px;

    background:var(--primary);

    bottom:-15px;
    right:120px;

}

/*==========================================================
HERO RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.hero{

    padding-top:130px;

}

.hero-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-features{

    max-width:650px;

    margin:30px auto 40px;

}

.hero-buttons{

    justify-content:center;

}

}

@media(max-width:768px){

section{

    padding:70px 0;

}

.hero-left h1{

    font-size:44px;

}

.hero-features{

    grid-template-columns:1fr;

}

}

@media(max-width:480px){

.logo h2{

    font-size:26px;

}

.hero-left h1{

    font-size:36px;

}

.btn{

    width:100%;

    margin-bottom:15px;

}

.btn-outline{

    margin-left:0;

}

}

/*==========================================================
ANIMATION
==========================================================*/

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-20px);
}

100%{
transform:translateY(0);
}

}
/*==========================================================
ABOUT SECTION
==========================================================*/

.about{
    background:#fff;
    position:relative;
}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:stretch;

}

/*==========================================================
ABOUT IMAGE
==========================================================*/

/*==========================================================
ABOUT IMAGE
==========================================================*/

/*==========================================================
ABOUT IMAGE
==========================================================*/

/*==========================================================
ABOUT IMAGE
==========================================================*/

.about-image{

    position:relative;

    height:100%;

    display:flex;

    overflow:hidden;

}

.about-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.45s ease;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

    /* Top-Left | Top-Right | Bottom-Right | Bottom-Left */
    
    border-radius:120px 0 120px 0;

}

.about-image:hover img{

    transform:scale(1.03);

}

.about-content{
    position:relative;
}

.about-content h2{
    font-family:'Poppins',sans-serif;
    font-size:42px;
    line-height:1.25;
    color:#111;
    margin-bottom:25px;
}

.about-content p{
    color:#666;
    margin-bottom:20px;
    font-size:16px;
}

.about-list{
    display:grid;
    gap:18px;
    margin-top:35px;
}

.about-list div{
    display:flex;
    align-items:center;
    gap:15px;
    font-weight:600;
    color:#222;
}

.about-list i{
    color:var(--primary);
    font-size:22px;
}

.about-list span{
    line-height:1.5;
}

/* Small Decorative Shape */

.about::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(34,197,94,.05);

    top:-120px;

    left:-120px;

}

/*==========================================================
WHY CHOOSE US
==========================================================*/

.why-us{

    background:var(--light);

    position:relative;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.why-card{

    background:#fff;

    padding:40px 30px;

    border-radius:22px;

    text-align:center;

    transition:.35s ease;

    border:1px solid #efefef;

    box-shadow:0 8px 25px rgba(0,0,0,.04);

    position:relative;

    overflow:hidden;

}

.why-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:var(--primary);

    transform:scaleX(0);

    transition:.35s ease;

}

.why-card:hover::before{

    transform:scaleX(1);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(0,0,0,.10);

}

.why-card i{

    width:75px;

    height:75px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#E8FFF1;

    color:var(--primary);

    font-size:32px;

    transition:.35s ease;

}

.why-card:hover i{

    background:var(--primary);

    color:#fff;

    transform:rotate(8deg);

}

.why-card h3{

    font-family:'Poppins';

    font-size:21px;

    margin-bottom:15px;

    color:#111;

}

.why-card p{

    color:#666;

    font-size:15px;

    line-height:1.7;

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.about-grid{

    grid-template-columns:1fr;

    gap:55px;

}

.about-image{

    max-width:700px;

    margin:auto;

}

.about-content{

    text-align:center;

}

.about-list{

    max-width:450px;

    margin:35px auto 0;

}

.why-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.about{

    padding:70px 0;

}

.about-content h2{

    font-size:34px;

}

.about-content p{

    font-size:15px;

}

.about-list{

    gap:16px;

}

.about-list div{

    align-items:flex-start;

    text-align:left;

}

.why-grid{

    grid-template-columns:1fr;

}

.why-card{

    padding:35px 25px;

}

}

@media(max-width:480px){

.about-content h2{

    font-size:30px;

}

.about-image img{

    border-radius:18px;

}

.about-list div{

    font-size:15px;

}

.why-card{

    padding:30px 22px;

}

.why-card i{

    width:65px;

    height:65px;

    font-size:26px;

}

.why-card h3{

    font-size:20px;

}

}
/*==========================================================
PRODUCT SECTION
==========================================================*/

.products{
    position:relative;
    padding:100px 0;
    background:#fff;
    overflow:hidden;
}

.products::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    right:-180px;
    top:-180px;
    border-radius:50%;
    background:rgba(34,197,94,.05);
}

.products::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    left:-160px;
    bottom:-160px;
    border-radius:50%;
    background:rgba(34,197,94,.04);
}

/*==========================================================
GRID
==========================================================*/

.product-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

    align-items:stretch;

    margin-top:60px;

}

/*==========================================================
CARD
==========================================================*/

.product-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid #ececec;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

    display:flex;

    flex-direction:column;

    height:100%;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 55px rgba(0,0,0,.14);

}

/*==========================================================
IMAGE BOX
==========================================================*/

.product-image{

    width:100%;

    height:340px;

    background:linear-gradient(
        180deg,
        #fafafa,
        #f4f4f4
    );

    display:flex;

    justify-content:center;

    align-items:center;

    padding:30px;

    position:relative;

    overflow:hidden;

}

.product-image::before{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    border-radius:50%;

    background:rgba(34,197,94,.05);

    top:-60px;

    right:-60px;

}

/* NEVER CROP */

.product-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    object-position:center;

    display:block;

    transition:.4s;

    position:relative;

    z-index:2;

}

.product-card:hover .product-image img{

    transform:scale(1.05);

}

/*==========================================================
CONTENT
==========================================================*/

.product-content{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:28px;

}

.product-content h3{

    font-size:22px;

    color:#111;

    margin-bottom:12px;

}

.product-content p{

    color:#666;

    line-height:1.8;

    flex:1;

    margin-bottom:25px;

}

/*==========================================================
PRICE
==========================================================*/

.price{

    margin-bottom:25px;

}

.price span{

    display:block;

    font-size:32px;

    font-weight:700;

    color:var(--primary);

}

.price small{

    color:#777;

}

/*==========================================================
BUTTON
==========================================================*/

.product-btn{

    display:block;

    width:100%;

    padding:15px;

    text-align:center;

    background:#111;

    color:#fff;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.product-btn:hover{

    background:var(--primary);

}

/*==========================================================
LARGE DESKTOP
==========================================================*/


@media(min-width:1400px){

    .product-grid{

        grid-template-columns:repeat(4,1fr);

        gap:45px;

    }

}


/*==========================================================
LAPTOP
==========================================================*/

@media(max-width:1200px){

.product-grid{

grid-template-columns:repeat(3,1fr);

}

.product-image{

height:320px;

}

}

/*==========================================================
TABLET LANDSCAPE
==========================================================*/

@media(max-width:992px){

.product-grid{

grid-template-columns:repeat(2,1fr);

gap:30px;

}

.product-image{

height:300px;

}

}

/*==========================================================
TABLET PORTRAIT
==========================================================*/

@media(max-width:768px){

.products{

padding:80px 0;

}

.product-grid{

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.product-image{

height:260px;

padding:25px;

}

.product-content{

padding:22px;

}

.product-content h3{

font-size:20px;

}

}

/*==========================================================
MOBILE
==========================================================*/

@media(max-width:576px){

.product-grid{

grid-template-columns:1fr;

}

.product-card{

max-width:420px;

margin:auto;

}

.product-image{

height:260px;

padding:20px;

}

.product-content{

padding:22px;

}

.product-content h3{

font-size:20px;

}

.price span{

font-size:28px;

}

}

/*==========================================================
SMALL MOBILE
==========================================================*/

@media(max-width:380px){

.product-image{

height:230px;

padding:18px;

}

.product-content{

padding:18px;

}

.product-content h3{

font-size:18px;

}

.product-content p{

font-size:14px;

}

.product-btn{

padding:13px;

font-size:14px;

}

}
/*==========================================
PART 3A
DELIVERY SECTION
==========================================================*/

.delivery{

    position:relative;

    background:linear-gradient(
        135deg,
        var(--black),
        var(--black2)
    );

    color:#fff;

    overflow:hidden;

}

.delivery::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(34,197,94,.08);

    top:-180px;

    right:-180px;

}

.delivery .section-title h2{

    color:#fff;

}

.delivery .section-title p{

    color:#cfcfcf;

}

.delivery .section-tag{

    background:rgba(34,197,94,.15);

    color:#8CF7B6;

}

.delivery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.delivery-card{

    background:#161616;

    border-radius:25px;

    padding:45px 35px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.delivery-card::before{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:5px;

    background:var(--primary);

    transform:scaleX(0);

    transition:.35s;

}

.delivery-card:hover::before{

    transform:scaleX(1);

}

.delivery-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 50px rgba(0,0,0,.25);

}

.delivery-card i{

    width:80px;

    height:80px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:rgba(34,197,94,.15);

    color:var(--primary-light);

    font-size:34px;

    transition:.35s;

}

.delivery-card:hover i{

    background:var(--primary);

    color:#fff;

    transform:rotate(10deg);

}

.delivery-card h3{

    font-family:'Poppins';

    font-size:24px;

    margin-bottom:18px;

}

.delivery-card h1{

    font-family:'Poppins';

    font-size:55px;

    color:var(--primary-light);

    margin-bottom:10px;

}

.delivery-card p{

    color:#bbb;

    font-size:15px;

    line-height:1.8;

}

/*==========================================================
CONTACT SECTION
==========================================================*/

.contact{

    background:#F8FAF8;

    position:relative;

}

.contact::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(34,197,94,.05);

    bottom:-120px;

    left:-120px;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 430px;

    gap:70px;

    align-items:center;

}

.contact-info h2{

    font-family:'Poppins';

    font-size:44px;

    margin-bottom:20px;

}

.contact-info p{

    color:#666;

    margin-bottom:35px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-bottom:28px;

}

.contact-item i{

    width:65px;

    height:65px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#E8FFF1;

    color:var(--primary);

    font-size:24px;

    flex-shrink:0;

}

.contact-item h4{

    font-family:'Poppins';

    margin-bottom:6px;

    color:#111;

}

.contact-item span{

    color:#666;

    line-height:1.7;

}

/*==========================================================
CONTACT CARD
==========================================================*/

.contact-card{

    background:#111;

    color:#fff;

    padding:45px;

    border-radius:30px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.contact-card h3{

    font-family:'Poppins';

    font-size:30px;

    margin-bottom:15px;

}

.contact-card p{

    color:#bbb;

    margin-bottom:30px;

}

/* WhatsApp Button */

.whatsapp-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    width:100%;

    padding:18px;

    border-radius:60px;

    background:#25D366;

    color:#fff;

    font-weight:600;

    transition:.35s ease;

    font-size:17px;

}

.whatsapp-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(37,211,102,.35);

}

.whatsapp-btn i{

    font-size:24px;

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.delivery-grid{

    grid-template-columns:repeat(2,1fr);

}

.contact-grid{

    grid-template-columns:1fr;

}

.contact-card{

    max-width:550px;

    margin:auto;

}

}

@media(max-width:768px){

.delivery{

    padding:70px 0;

}

.delivery-grid{

    grid-template-columns:1fr;

}

.delivery-card{

    padding:40px 28px;

}

.delivery-card h1{

    font-size:46px;

}

.contact{

    padding:70px 0;

}

.contact-info{

    text-align:center;

}

.contact-item{

    text-align:left;

}

.contact-info h2{

    font-size:34px;

}

.contact-card{

    padding:35px 28px;

}

}

@media(max-width:480px){

.contact-info h2{

    font-size:30px;

}

.delivery-card{

    padding:35px 24px;

}

.delivery-card i{

    width:70px;

    height:70px;

    font-size:30px;

}

.delivery-card h3{

    font-size:22px;

}

.delivery-card h1{

    font-size:42px;

}

.contact-item i{

    width:58px;

    height:58px;

    font-size:22px;

}

.contact-card{

    border-radius:22px;

}

.whatsapp-btn{

    font-size:16px;

    padding:16px;

}

}

/*==========================================================
CALL TO ACTION (CTA)
==========================================================*/

.cta{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary)
    );

    color:#fff;

    text-align:center;

}

.cta::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    top:-250px;
    right:-180px;

}

.cta::after{

    content:"";

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-150px;
    left:-120px;

}

.cta .container{

    position:relative;

    z-index:2;

}

.cta h2{

    font-family:'Poppins';

    font-size:48px;

    margin-bottom:20px;

    line-height:1.2;

}

.cta p{

    max-width:700px;

    margin:0 auto 35px;

    font-size:18px;

    color:#f2f2f2;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta .btn{

    background:#fff;

    color:var(--primary-dark);

}

.cta .btn:hover{

    background:#111;

    color:#fff;

}

.cta .btn-outline{

    border:2px solid rgba(255,255,255,.5);

    color:#fff;

}

.cta .btn-outline:hover{

    background:#fff;

    color:var(--primary);

}



/*==========================================================
FLOATING WHATSAPP
==========================================================*/

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    box-shadow:0 12px 35px rgba(0,0,0,.30);

    z-index:999;

    animation:pulse 2s infinite;

    transition:.3s;

}

.floating-whatsapp:hover{

    transform:scale(1.12);

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

/*==========================================================
BACK TO TOP
==========================================================*/

#backToTop{

    position:fixed;

    left:25px;

    bottom:25px;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    display:none;

    font-size:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    transition:.3s;

    z-index:998;

}

#backToTop:hover{

    background:var(--primary-dark);

    transform:translateY(-5px);

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.footer-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.cta{

    padding:80px 0;

}

.cta h2{

    font-size:36px;

}

.cta p{

    font-size:16px;

}

.cta-buttons{

    flex-direction:column;

}

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.footer-social{

    justify-content:center;

}

.footer-links{

    margin-top:15px;

}

.floating-whatsapp{

    width:58px;

    height:58px;

    font-size:28px;

}

#backToTop{

    width:48px;

    height:48px;

}

}

@media(max-width:480px){

.cta h2{

    font-size:30px;

}

.footer-brand h2{

    font-size:28px;

}

.footer-links h3{

    font-size:18px;

}

.footer-social a{

    width:42px;

    height:42px;

}

.floating-whatsapp{

    right:18px;

    bottom:18px;

}

#backToTop{

    left:18px;

    bottom:18px;

}

}
/*==========================================================
PART 4
MASTER RESPONSIVE CSS
==========================================================*/

/*==========================================================
LARGE LAPTOPS
1200px and below
==========================================================*/

@media (max-width:1200px){

.container{
    width:94%;
}

.hero-grid,
.about-grid{
    gap:60px;
}

.product-grid{
    grid-template-columns:repeat(3,1fr);
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.delivery-grid{
    grid-template-columns:repeat(3,1fr);
}

.footer-grid{
    grid-template-columns:2fr 1fr 1fr;
}

}

/*==========================================================
LAPTOPS
992px and below
==========================================================*/

@media (max-width:992px){

section{
    padding:85px 0;
}

/* HERO */

.hero{
    padding-top:120px;
    min-height:auto;
}

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:50px;
}

.hero-left{
    order:2;
}

.hero-image{
    order:1;
    max-width:500px;
    margin:auto;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.hero-features{
    max-width:600px;
    margin:30px auto;
}

/* ABOUT */

.about-grid{
    grid-template-columns:1fr;
    gap:45px;
}

.about-image{
    max-width:650px;
    margin:auto;
}

.about-content{
    text-align:center;
}

.about-list{
    max-width:500px;
    margin:35px auto 0;
}

/* PRODUCTS */

.product-grid{
    grid-template-columns:repeat(2,1fr);
}

/* DELIVERY */

.delivery-grid{
    grid-template-columns:repeat(2,1fr);
}

/* CONTACT */

.contact-grid{
    grid-template-columns:1fr;
}

.contact-card{
    max-width:550px;
    margin:auto;
}

/* FOOTER */

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/*==========================================================
TABLETS
768px and below
==========================================================*/

@media (max-width:768px){

section{
    padding:70px 0;
}

/* HEADER */

header .container{
    height:75px;
}

.mobile-toggle{
    display:block;
}

/* MOBILE MENU */

#navbar{
    position:absolute;
    top:75px;
    left:0;
    width:100%;
    background:#111;
    overflow:hidden;
    max-height:0;
    transition:max-height .35s ease;
}

#navbar.active{
    max-height:550px;
}

#navbar ul{
    display:flex;
    flex-direction:column;
}

#navbar ul li{
    width:100%;
}

#navbar ul li a{
    display:block;
    padding:18px 25px;
    border-bottom:1px solid rgba(255,255,255,.05);
}

/* TITLES */

.section-title h2{
    font-size:34px;
}

.hero-left h1{
    font-size:44px;
}

.about-content h2{
    font-size:34px;
}

.contact-info h2{
    font-size:34px;
}

.cta h2{
    font-size:36px;
}

/* GRIDS */

.hero-features,
.product-grid,
.why-grid,
.delivery-grid,
.footer-grid,
.contact-grid{
    grid-template-columns:1fr;
}

/* PRODUCT */

.product-card{
    max-width:480px;
    margin:auto;
}

/* CTA */

.cta-buttons{
    flex-direction:column;
}

/* FOOTER */

.footer-grid{
    text-align:center;
}

.footer-social{
    justify-content:center;
}

}

/*==========================================================
MOBILE
576px and below
==========================================================*/

@media (max-width:576px){

.container{
    width:92%;
}

.hero-left h1{
    font-size:38px;
}

.hero-left p{
    font-size:16px;
}

.section-title h2{
    font-size:30px;
}

.about-content h2,
.contact-info h2,
.cta h2{
    font-size:30px;
}

.product-image img{
    height:240px;
}

.price{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
}

.btn{
    width:100%;
}

.btn-outline{
    margin-left:0;
}

.contact-card,
.delivery-card,
.why-card,
.product-card{
    border-radius:20px;
}

}

/*==========================================================
SMALL PHONES
400px and below
==========================================================*/

@media (max-width:400px){

.logo h2{
    font-size:24px;
}

.hero-left h1{
    font-size:32px;
}

.hero-left p{
    font-size:15px;
}

.section-title h2{
    font-size:27px;
}

.hero-features div{
    font-size:14px;
}

.product-content{
    padding:18px;
}

.product-content h3{
    font-size:19px;
}

.product-content p{
    font-size:14px;
}

.delivery-card,
.contact-card{
    padding:28px 20px;
}

.footer-brand h2{
    font-size:26px;
}

.floating-whatsapp{
    width:55px;
    height:55px;
    font-size:26px;
}

#backToTop{
    width:45px;
    height:45px;
}

}


::selection{

    background:var(--primary);

    color:#fff;

}

::-moz-selection{

    background:var(--primary);

    color:#fff;

}

/*==========================================================
CUSTOM SCROLLBAR
==========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#efefef;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*==========================================================
IMAGE OPTIMIZATION
==========================================================*/

img{

    max-width:100%;

    height:auto;

    user-select:none;

    -webkit-user-drag:none;

}

/*==========================================================
LINKS
==========================================================*/

a{

    transition:.3s ease;

}

/*==========================================================
BUTTON ACTIVE
==========================================================*/

.btn:active,
.product-btn:active,
.whatsapp-btn:active{

    transform:scale(.97);

}

/*==========================================================
INPUTS
==========================================================*/

input,
textarea,
select{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:12px;

    outline:none;

    font-size:15px;

    font-family:'Inter',sans-serif;

}

input:focus,
textarea:focus,
select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(34,197,94,.15);

}

/*==========================================================
FOCUS ACCESSIBILITY
==========================================================*/

a:focus-visible,
button:focus-visible,
input:focus-visible{

    outline:3px solid var(--primary-light);

    outline-offset:3px;

}

/*==========================================================
CARD HOVER
==========================================================*/

.product-card,
.why-card,
.delivery-card,
.contact-card{

    will-change:transform;

}




/*==========================================================
SMOOTH SHADOWS
==========================================================*/

.hero-image img:hover{

    filter:drop-shadow(0 25px 40px rgba(0,0,0,.18));

}

.about-image img:hover{

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

/*==========================================================
SOCIAL ICON EFFECT
==========================================================*/

.footer-social a:hover i{

    transform:rotate(360deg);

}

.footer-social i{

    transition:.45s ease;

}

/*==========================================================
ICON EFFECT
==========================================================*/

.why-card:hover i,
.delivery-card:hover i{

    animation:iconBounce .6s;

}

@keyframes iconBounce{

0%{

transform:scale(.7);

}

50%{

transform:scale(1.15);

}

100%{

transform:scale(1);

}

}

/*==========================================================
BUTTON SHINE
==========================================================*/

.btn{

    position:relative;

    overflow:hidden;

}

.btn::after{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:rgba(255,255,255,.25);

    transform:skewX(-25deg);

}

.btn:hover::after{

    left:150%;

    transition:.6s;

}




/*==========================================================
PRINT
==========================================================*/

@media print{

header,
footer,
.mobile-toggle,
.floating-whatsapp,
#backToTop{

display:none;

}

body{

background:#fff;

color:#000;

}

section{

padding:20px 0;

}

}

/*==========================================================
END OF STYLESHEET
==========================================================*/