*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#fff;
    overflow-x:hidden;
}

/* NAVBAR */
.navbar{
    width:100%;
    height:85px;
    background:#000;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 55px;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
}

.logo img{
    width:120px;
    display:block;
}

.nav-links{
    display:flex;
    gap:35px;
    align-items:center;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    letter-spacing:.5px;
}

.nav-item{
    position:relative;
}

.nav-item > a{
    display:flex;
    align-items:center;
    gap:6px;
}

.dropdown{
    position:absolute;
    top:38px;
    left:0;
    width:250px;
    background:#000;
    border:1px solid #222;
    padding:18px 0;
    display:none;
    z-index:3000;
}

.dropdown a{
    display:block;
    color:#bdbdbd;
    padding:10px 25px;
    font-size:16px;
    font-weight:600;
    line-height:1.3;
}

.dropdown a:hover{
    color:#fff;
    background:#111;
}

.nav-item:hover .dropdown{
    display:block;
}

.menu-btn,
.menu-toggle{
    display:none;
    color:#fff;
    font-size:32px;
    cursor:pointer;
}

/* HERO */
.hero{
    width:100%;
    height:100vh;
    margin-top:85px;
    position:relative;
    overflow:hidden;
}

.slide{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:10;
    text-align:center;
    color:#CD5C5C;
    width:90%;
    max-width:900px;
}

.hero-content h1{
    font-size:72px;
    font-weight:900;
    letter-spacing:4px;
    line-height:1;
    text-transform:uppercase;
    margin-bottom:14px;
}

.hero-content h2{
    font-size:25px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:18px;
}

.hero-content p{
    font-size:18px;
    line-height:1.7;
    max-width:720px;
    margin:0 auto 30px;
}

.btn-box{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:4px;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    letter-spacing:.5px;
    transition:.3s;
}

.insta-btn{
    background:#fff;
    color:#000;
}

.wa-btn{
    background:#25D366;
    color:#fff;
}

.btn:hover{
    transform:translateY(-3px);
}

/* DOTS */
.dots{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:20;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#999;
    cursor:pointer;
}

.dot.active{
    background:#fff;
}

/* WHATSAPP */
.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:58px;
    height:58px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    text-decoration:none;
    z-index:2000;
}

/* CATEGORIES */
.categories{
    padding:70px 48px;
    background:#fff;
}

.section-title{
    font-size:34px;
    font-weight:900;
    margin-bottom:45px;
    color:#111;
    text-transform:uppercase;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:48px 70px;
}

.category-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.category-card{
    width:100%;
    background:#fff;
    overflow:hidden;
    transition:.3s;
}

.category-card:hover{
    transform:translateY(-6px);
}

.category-card img{
    width:100%;
    height:455px;
    object-fit:cover;
    display:block;
}

.category-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 5px 5px;
}

.category-footer span{
    font-size:18px;
    color:#111;
    font-weight:500;
}

.arrow{
    font-size:28px;
    transition:.3s;
}

.category-card:hover .arrow{
    transform:translateX(8px);
}

/* FEATURED PRODUCTS */
.featured-products{
    padding:60px 35px;
    background:#fff;
}

.featured-title{
    font-size:34px;
    font-weight:900;
    margin-bottom:40px;
    color:#111;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
}

.product-img{
    width:100%;
    height:420px;
    position:relative;
    overflow:hidden;
    background:#f5f5f5;
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    inset:0;
    transition:.4s ease;
}

.hover-img{
    opacity:0;
}

.product-img:hover .hover-img{
    opacity:1;
}

.product-img:hover .main-img{
    opacity:0;
}

.sale-badge{
    position:absolute;
    left:18px;
    bottom:18px;
    background:#000;
    color:#fff;
    padding:8px 18px;
    border-radius:20px;
    font-size:16px;
    font-weight:700;
    z-index:5;
}

.product-card h3{
    font-size:18px;
    line-height:1.35;
    margin:20px 0 12px;
    color:#111;
}

.product-card p{
    font-size:22px;
    margin-bottom:25px;
    color:#111;
}

.product-card del{
    color:#666;
    margin-right:14px;
    font-size:18px;
}

/* INSTAGRAM VIDEOS */
.instagram-section{
    padding:80px 40px;
    background:#f7f7f7;
    text-align:center;
}

.instagram-section h2{
    font-size:38px;
    font-weight:900;
    color:#000;
    margin-bottom:18px;
}

.instagram-section p{
    font-size:20px;
    color:#555;
    margin-bottom:40px;
}

.instagram-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
    margin-bottom:35px;
}

.insta-card{
    height:330px;
    border-radius:14px;
    overflow:hidden;
    display:block;
    background:#ddd;
}

.insta-card video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s ease;
}

.insta-card:hover video{
    transform:scale(1.08);
}

.instagram-btn{
    display:inline-block;
    background:#000;
    color:#fff;
    padding:18px 55px;
    border-radius:14px;
    font-size:18px;
    font-weight:800;
    text-decoration:none;
}

/* FOOTER */
.footer{
    background:#202737;
    color:#fff;
    margin-top:60px;
}

.footer-top{
    padding:50px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.newsletter h3{
    font-size:18px;
    margin-bottom:25px;
    font-weight:700;
}

.email-form{
    width:450px;
    height:58px;
    border:1px solid rgba(255,255,255,.35);
    display:flex;
    align-items:center;
}

.email-form input{
    flex:1;
    height:100%;
    border:none;
    background:transparent;
    padding:0 25px;
    color:#fff;
    font-size:20px;
    outline:none;
}

.email-form input::placeholder{
    color:#d0d0d0;
}

.email-form button{
    width:70px;
    height:100%;
    border:none;
    background:transparent;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.instagram-icon svg{
    display:block;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:22px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.footer-bottom p{
    color:#cfcfcf;
    font-size:14px;
}

.footer-links{
    display:flex;
    gap:20px;
}

.footer-links a{
    color:#cfcfcf;
    text-decoration:none;
    font-size:14px;
}

.footer-links a:hover{
    color:#fff;
}

/* INNER PAGE COMMON */
.page-content{
    padding:60px 4%;
    margin-top:85px;
}

.page-content h1{
    font-size:54px;
    margin-bottom:25px;
    color:#111;
}

.page-content p,
.page-content li{
    font-size:23px;
    line-height:1.5;
    color:#333;
}

.page-content ul{
    margin:25px 0 25px 22px;
}

.products-showcase{
    padding:20px 4% 70px;
}

.showcase-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.showcase-card img{
    width:100%;
    height:390px;
    object-fit:cover;
    display:block;
}

.showcase-card h3{
    font-size:18px;
    margin-top:14px;
    line-height:1.35;
    color:#111;
}

/* TABLET */
@media(max-width:1024px){
    .category-grid{
        gap:35px;
    }

    .category-card img{
        height:330px;
    }

    .product-grid,
    .showcase-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .product-img{
        height:360px;
    }

    .showcase-card img{
        height:330px;
    }
}

/* MOBILE */
@media(max-width:768px){

    /* MOBILE NAVBAR */

.navbar{
        height:75px;
        position:fixed;
        top:0;
        left:0;
        width:100%;
        background:#000;
        z-index:9999;
        justify-content:center;
        padding:0;
    }

    .logo{
        position:absolute;
        left:50%;
        transform:translateX(-50%);
    }

    .logo img{
        width:130px;
    }

    .menu-btn,
    .menu-toggle{
        display:block !important;
        position:absolute;
        left:20px;
        top:50%;
        transform:translateY(-50%);
        color:#fff;
        font-size:34px;
        cursor:pointer;
        z-index:10000;
    }

    .nav-links{
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        background:#000;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
        gap:0;
        max-height:calc(100vh - 75px);
        overflow-y:auto;
    }

    .nav-links.show,
    .nav-links.active{
        display:flex;
    }

    .nav-links a{
        font-size:14px;
        width:100%;
        padding:10px 0;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .nav-item{
        width:100%;
    }

    .nav-item > a{
        width:100%;
        justify-content:space-between;
    }

    .dropdown{
        position:static;
        width:100%;
        border:none;
        padding:5px 0 5px 15px;
        background:#050505;
        display:none;
    }

    .nav-item:hover .dropdown{
        display:block;
    }

    .hero{
        height:85vh;
        margin-top:75px;
    }

    .hero-content{
        width:88%;
        top:50%;
    }

    .hero-content h1{
        font-size:38px;
        letter-spacing:1.5px;
        margin-bottom:12px;
    }

    .hero-content h2{
        font-size:17px;
        margin-bottom:14px;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.6;
        margin-bottom:22px;
    }

    .btn{
        padding:12px 22px;
        font-size:13px;
    }

    .dots{
        bottom:25px;
    }

    .whatsapp-float{
        width:52px;
        height:52px;
        right:18px;
        bottom:18px;
        font-size:25px;
    }

    .categories{
        padding:45px 18px;
    }

    .section-title{
        font-size:26px;
        margin-bottom:28px;
        text-align:left;
    }

    .category-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .category-card img{
        height:auto;
        aspect-ratio:16/9;
    }

    .featured-products{
        padding:45px 18px;
    }

    .featured-title{
        font-size:28px;
    }

    .product-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .product-img{
        height:auto;
        aspect-ratio:1/1;
    }

    .product-card h3{
        font-size:16px;
    }

    .product-card p{
        font-size:19px;
    }

    .instagram-section{
        padding:55px 18px;
    }

    .instagram-section h2{
        font-size:28px;
    }

    .instagram-section p{
        font-size:15px;
        line-height:1.6;
        margin-bottom:28px;
    }

    .instagram-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .insta-card{
        height:190px;
        border-radius:10px;
    }

    .instagram-btn{
        width:100%;
        padding:15px;
        font-size:16px;
    }

    .footer-top{
        padding:35px 20px;
        flex-direction:column;
        align-items:flex-start;
        gap:25px;
    }

    .email-form{
        width:100%;
    }

    .footer-bottom{
        padding:20px;
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .footer-links{
        flex-wrap:wrap;
    }

    .page-content{
        padding:40px 20px;
        margin-top:75px;
    }

    .page-content h1{
        font-size:36px;
    }

    .page-content p,
    .page-content li{
        font-size:17px;
    }

    .products-showcase{
        padding:10px 20px 50px;
    }

    .showcase-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .showcase-card img{
        height:auto;
        aspect-ratio:1/1;
    }
}

@media(max-width:480px){

    .hero{
        height:82vh;
    }

    .hero-content h1{
        font-size:31px;
    }

    .hero-content h2{
        font-size:15px;
    }

    .btn-box{
        flex-direction:column;
        align-items:center;
    }

    .insta-card{
        height:170px;
    }
}
html{
    scroll-behavior:smooth;
}

.product-section{
    padding:60px 4%;
    scroll-margin-top:110px;
}

.product-section h2{
    font-size:36px;
    margin-bottom:30px;
    color:#111;
    text-transform:uppercase;
}

@media(max-width:768px){
    .product-section{
        padding:40px 20px;
        scroll-margin-top:90px;
    }

    .product-section h2{
        font-size:26px;
    }
}
