  *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f5f5;
    color:#333;
    line-height:1.6;
}

/* Header */
header{
    background:#8B0000;
    color:#fff;
    padding:15px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
}

header h1{
    font-size:28px;
    font-weight:bold;
}

nav{
    display:flex;
    gap:20px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#ffd700;
}

header a[href*="wa.me"]{
    background:#25D366;
    color:#fff;
    padding:10px 18px;
    border-radius:5px;
    text-decoration:none;
    font-weight:bold;
}

/* Hero Section */
.hero{
    min-height:400px;
    background:#444;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px; 
    gap:20px;
}

.hero h2{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:25px;
}

.hero a{
    background:#ff6600;
    color:#fff;
    padding:15px 30px;
    text-decoration:none;
    border-radius:5px;
    font-size:18px;
    transition:.3s;
}

.hero a:hover{
    background:#cc5200;
}

/* Products */
.cats{
    padding:60px 5%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

.cats div{
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,.1);
    font-size:20px;
    font-weight:bold;
    transition:.3s;
}

.cats div:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 20px rgba(0,0,0,.2);
}

/* Gallery */
#gallery{
    padding:60px 5%;
    text-align:center;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}

.gallery-grid img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* Contact */
#contact{
    background:#fff;
    padding:60px 5%;
    text-align:center;
}

#contact h2{
    margin-bottom:20px;
}

/* Footer */
footer{
    background:#222;
    color:#fff;
    text-align:center;
    padding:20px;
}

/* Back To Top */
#topBtn{
    position:fixed;
    bottom:20px;
    right:20px;
    display:none;
    border:none;
    background:#8B0000;
    color:#fff;
    padding:15px;
    border-radius:50%;
    cursor:pointer;
    font-size:18px;
    cursor:pointer;
}

/* Animation */
.fade{
    opacity:0;
    transform:translateY(30px);
    transition:all .8s ease;
}

.fade.show{
    opacity:1;
    transform:translateY(0);
}

/* Mobile */
@media(max-width:768px){

    header{
        flex-direction:column;
        gap:15px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h2{
        font-size:30px;
    }

    .hero p{
        font-size:16px;
    }
}
