html, body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    background: #fff8ef;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* NAVBAR */
.main-navbar {
    background: linear-gradient(90deg, #f7d7a8, #f3c089);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.main-container {
    min-height: calc(100vh - 140px);
}

/* SLIDER */
.hero-carousel-img {
    height: 380px;
    object-fit: cover;
}

.hero-caption h2 {
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    font-weight: 700;
}

.hero-caption p {
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

/* ANA SAYFA KATEGORİ KARTLARI */
.home-cat-card {
    display: block;
    text-align: center;
    background-color: #fff;
    border-radius: 18px;
    padding: 18px 10px;
    text-decoration: none;
    color: #4a3321;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .home-cat-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.15);
        text-decoration: none;
    }

.home-cat-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.home-cat-title {
    font-weight: 600;
}

/* ÜRÜN KARTLARI */
.product-card .card {
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .product-card .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.product-card img {
    height: 230px;
    object-fit: cover;
}

/* KATEGORİ FİLTRE BUTONLARI */
.btn-filter {
    border-radius: 20px;
    padding: 6px 18px;
    border: 1px solid #c97a40;
    background-color: #fff4e0;
    color: #8b4f1d;
    font-weight: 500;
}

    .btn-filter.active,
    .btn-filter:hover {
        background-color: #c97a40;
        color: #ffffff;
    }

/* SABİT WHATSAPP BUTONU */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
    z-index: 9999;
    font-size: 14px;
}

    .whatsapp-float:hover {
        color: #fff;
        text-decoration: none;
        transform: translateY(-1px);
    }

.whatsapp-icon {
    font-size: 18px;
}

/* FOOTER */
.footer {
    background-color: #fde6c9;
    padding: 10px 0;
}
