body {
    background: #f8f5f0;
    font-family:
        Inter,
        "Segoe UI",
        sans-serif;
}

.top-contact {
    background: #3b2416;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.contact-link i {
    margin-right: 6px;
    color: #ffc107;
}

marquee {
    font-weight: 500;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #7a4a28;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)),
        url("https://images.unsplash.com/photo-1555041469-a586c61ea9bc") center/cover;
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}

.category-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: #7a4a28;
    color: #fff;
    padding: 20px 10px;
    border-radius: 12px;
    min-height: 180px;
    text-align: center;
    font-weight: bold;
}

.product-scroll {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.product-card {
    min-width: 240px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    scroll-snap-align: start;
    transition: .3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.footer {
    background: #2b1a11;
    color: #ddd;
    padding: 35px 0;
    margin-top: 50px;
}

.footer h5 {
    color: #fff;
}

@media(max-width: 768px) {
    .category-title {
        writing-mode: horizontal-tb;
        transform: none;
        min-height: auto;
        margin-bottom: 15px;
    }

    .hero {
        padding: 60px 15px;
    }
}

.carousel-banner {
    height: 550px;
    object-fit: cover;
}

.carousel-caption {
    bottom: 25%;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, .5);
}

.carousel-caption p {
    font-size: 1.2rem;
}

@media(max-width:768px) {

    .carousel-banner {
        height: 300px;
    }

    .carousel-caption {
        bottom: 15%;
    }

    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: .9rem;
    }
}

.whatsapp-float {

    position: fixed;

    width: 60px;
    height: 60px;

    bottom: 25px;
    right: 25px;

    background: #25D366;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .3);

    z-index: 9999;

    transition: .3s;
}

.whatsapp-float:hover {

    transform: scale(1.1);

    background: #1ebe57;
}