*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f4f4;
    color:#111;
}

.container{
    width:85%;
    margin:auto;
}

header{
    background:#000;
    border-bottom:2px solid red;
    position:sticky;
    top:0;
    z-index:1000;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 0;
}

.logo{
    color:#fff;
    font-size:38px;
    font-weight:bold;
    flex: 1;
}

.logo a{
    color: white;
    text-decoration: none;
}

.logo b{
    color:red;
}

.logo i{
    color: red;
}

.menu{
    display:flex;
    gap: 30px;
    list-style:none;
}

.menu a{
    color:#fff;
    text-decoration:none;
    font-size:20px;
    transition:0.3s;
}

.menu a:hover{
    color:red;
}

.banner{
    height:90vh;
    background:url(img/banner.jpg) center/cover;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

.banner-content{
    position:relative;
    text-align:center;
    color:#fff;
}

.banner-content h1{
    font-size:90px;
    margin-bottom:20px;
}

.banner-content p{
    font-size:35px;
    margin-bottom:40px;
}

.search-box{
    background:#fff;
    padding:20px;
    border-radius:20px;
    display:flex;
    gap:15px;
    width:800px;
}

.search-box input{
    flex:1;
    border:none;
    outline:none;
    font-size:20px;
}

.search-box button{
    border:none;
    background:red;
    color:#fff;
    padding:15px 30px;
    border-radius:12px;
    cursor:pointer;
    font-size:18px;
}

section{
    padding:100px 0;
}

h2{
    text-align:center;
    font-size:60px;
    margin-bottom:60px;
}

.about-content{
    display:flex;
    gap:60px;
    align-items:center;
}

.about-text p{
    font-size:24px;
    line-height:1.8;
    margin-bottom:30px;
}

.about-text button{
    padding:15px 30px;
    border:1px solid #ccc;
    background:#fff;
    border-radius:10px;
    font-size:18px;
}

.about-image img{
    width:500px;
    border-radius:20px;
}

.category-grid,
.product-grid,
.price-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:40px;
    border:2px solid red;
    border-radius:20px;
}

.card i{
    font-size:50px;
    color:red;
    margin-bottom:20px;
}

.card h3{
    font-size:30px;
    margin-bottom:15px;
}

.card p{
    font-size:20px;
    line-height:1.6;
    margin-bottom:25px;
}

.card a{
    color:red;
    text-decoration:none;
    font-weight:bold;
    font-size:20px;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.product-image{
    position:relative;
}

.product-image img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.product-image span{
    position:absolute;
    top:15px;
    right:15px;
    background:red;
    color:#fff;
    padding:10px 20px;
    border-radius:20px;
    font-weight:bold;
}

.product-info{
    padding:30px;
}

.product-info h3{
    font-size:30px;
    margin-bottom:15px;
}

.product-info p{
    font-size:20px;
    margin-bottom:25px;
}

.product-btns{
    display:flex;
    gap:15px;
}

.btn-outline,
.btn-red,
.price-card button,
.contact-form button{
    flex:1;
    padding:15px;
    border-radius:10px;
    cursor:pointer;
    font-size:18px;
}

.btn-outline{
    background:#fff;
    border:1px solid #ccc;
}

.btn-red,
.price-card.active button,
.contact-form button{
    background:red;
    border:none;
    color:#fff;
}

.price-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    border:2px solid #ddd;
}

.price-card.active{
    border:3px solid red;
}

.price-card h3{
    font-size:35px;
}

.price-card h1{
    color:red;
    font-size:60px;
    margin:20px 0;
}

.price-card ul{
    list-style:none;
    text-align:left;
    margin:30px 0;
}

.price-card li{
    margin-bottom:20px;
    font-size:22px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info h2{
    text-align:left;
}

.info-item{
    margin-bottom:40px;
}

.info-item h3{
    margin-bottom:10px;
    font-size:28px;
}

.info-item p{
    font-size:22px;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
}

.contact-form h3{
    font-size:35px;
    margin-bottom:30px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:20px;
    margin-bottom:20px;
    border:1px solid #ccc;
    border-radius:10px;
    font-size:18px;
}

.contact-form textarea{
    height:150px;
    resize:none;
}

footer{
    background:#000;
    color:gray;
    padding:60px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer-grid h3{
    margin-bottom:20px;
    font-size:28px;
    color: white;
}

.footer-grid p,
.footer-grid li{
    font-size:20px;
    line-height:1.8;
    list-style:none;
}

.footer-links a{
    color:#999;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:red;
    padding-left:5px;
}

.footer-logo{
    color:#fff;
    font-size:36px;
    font-weight:bold;

    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:20px;
}

.footer-logo a{
    color: white;
    text-decoration: none;
}

.footer-logo b{
    color:red;
}

.footer-logo i{
    color:red;
}

.socials i{
    font-size:30px;
    margin-right:20px;
    cursor:pointer;
}

@media screen and (max-width:1208px){

    .about-content,
    .contact-grid{
        grid-template-columns:1fr;
        display:grid;
    }

    .search-box{
        width:100%;
        flex-direction:column;
    }

    .banner-content h1{
        font-size:55px;
    }

    .menu{
        display:none;
    }

    h2{
        font-size:40px;
    }
}

.contact-form button:hover,
.btn-red:hover,
.search-box button:hover{
    opacity:0.9;
}

.price-card button{
    border:none;
    background:#fff;
    border:1px solid #ccc;
}

.price-card.active button{
    background:red;
    color:#fff;
    border:none;
}

footer ul{
    padding-left:0;
}

footer li{
    margin-bottom:10px;
}

.socials{
    margin-top:20px;
}

.socials i:hover{
    color:red;
    transition:0.3s;
}

html{
    scroll-behavior:smooth;
}

.hamburger{
    display:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
    margin-left:auto;
}


@media screen and (max-width:1208px){

    .nav{
        position:relative;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .hamburger{
        display:block;
    }

    .menu{
        position:absolute;
        top:90px;
        left:0;
        width:100%;

        background:#000;

        flex-direction:column;
        align-items:center;

        gap:0;

        max-height:0;
        overflow:hidden;

        transition:0.4s;
    }

    .menu.active{
        max-height:500px;
        padding:20px 0;
        border-top:1px solid red;
    }

    .menu li{
        width:100%;
        text-align:center;
    }

    .menu a{
        display:block;
        padding:18px 0;
        width:100%;
    }

    .menu a:hover{
        background:#111;
    }
}


@media(max-width:1208px){

    .container{
        width:92%;
    }

    .menu{
        display:flex;
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .menu a{
        font-size:16px;
    }

    .banner{
        height:auto;
        padding:120px 0;
    }

    .banner-content h1{
        font-size:40px;
    }

    .banner-content p{
        font-size:20px;
    }

    .search-box{
        padding:15px;
    }

    .search-box input{
        font-size:16px;
    }

    .search-box button{
        width:100%;
        font-size:16px;
    }

    h2{
        font-size:34px;
    }

    .about-content{
        display:flex;
        flex-direction:column;
    }

    .about-image img{
        width:100%;
    }

    .about-text p{
        font-size:18px;
    }

    .card h3,
    .product-info h3,
    .price-card h3{
        font-size:24px;
    }

    .card p,
    .product-info p,
    .price-card li{
        font-size:17px;
    }

    .price-card h1{
        font-size:42px;
    }

    .product-btns{
        flex-direction:column;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-info h2{
        text-align:center;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }
}