/* Featured Menu Slider Genel */
.featured-menu-slider {
    display: flex;
    gap: 20px; /* kolonlar arası boşluk */
    background-color: #fff; /* header ile uyumlu */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* hafif gölge */
    padding: 20px;
    margin-top: 5px; /* header ile arasını açıyor */
    margin-bottom: 20px;
    border-radius: 8px;
}

/* Sol Menü */
.fms-left {
    flex: 0 0 200px; /* sabit genişlik */
}
.fms-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fms-left ul li a {
    color: #212529;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}
.fms-left ul li a:hover {
    color: #0d6efd;
}

/* Menü ikonlarını daire içine almak */
.fms-left ul li a .fms-icon {
    width: 36px;
    height: 36px;
    background-color: #f0f0f0; /* ikon arka planı */
    border-radius: 50%; /* daire yapar */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 16px;
    color: #0d6efd;
    transition: background-color 0.3s, color 0.3s;
}
.fms-left ul li a:hover .fms-icon {
    background-color: #0d6efd;
    color: #fff;
}

/* Yazılar aynı hizada */
.fms-left ul li a span.fms-icon + * {
    line-height: 36px; /* ikon yüksekliğiyle hizalı */
}

/* Carousel (sağ alan) */
.fms-right {
    flex: 1; /* kalan tüm alanı kaplar */
    overflow: hidden;
    position: relative;
}
.fms-right .carousel-item img {
    width: 100%;
    height: 500px; /* dikeyde büyümez */
    object-fit: cover; /* yatayda doldurur */
}

/* Responsive */
@media (max-width: 991px) {
    .featured-menu-slider {
        flex-direction: column;
    }
    .fms-left, .fms-right {
        flex: unset;
        width: 100%;
    }
}
