/* Sol Öne Çıkan Görsel Kartı */
.hero-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    min-height: 520px;
    border: none;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-card:hover img {
    transform: scale(1.04);
}

/* Resim Üzerindeki Katman (Overlay) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.5rem;
    /* Hafif karartma ve dipte daha koyu degrade */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.85) 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Etiketi üste, başlıkları alta iter */
}

/* Resim Üzerindeki Özel Etiket (Badge) */
.hero-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-block;
}

/* Başlık ve Alt Başlık Stilleri */
.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* Sağ Ürün Kartları */
.product-card {
    border: none;
    border-radius: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    margin: 8px 4px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.product-card .card-img-top {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    object-fit: cover;
}

.badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
}

/* Slider Ok Düğmeleri */
.slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #333333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.slider-btn:hover {
    background: var(--renk1);
    color: var(--menu_yazi);
    border-color: #0d6efd;
}

.carousel-control-prev {
    left: -15px;
}

.carousel-control-next {
    right: -15px;
}