* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.video-background {
    pointer-events: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    z-index: -1;
}

/* === Genel Kart Stili === */
.card-hover {
    display: flex;
    flex-direction: row;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    align-items: stretch;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
}

/* Sol Görsel */
.card-hover img {
    width: 45%;
    height: 100%;
    object-fit: contain;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
/* Sağ Yazı Alanı */
.card-hover .overlay {
    width: 90%;
    height: 100%;
    padding: 30px;
    /*background: linear-gradient(to top, rgba(33, 33, 33, 0.9), rgba(255, 193, 7, 0.2));*/
    display: flex;
    flex-direction: column;
    transition: background 0.6s ease;
    justify-content: flex-start;
    overflow-y: auto;
    background: none; /* koyu arka planın gereksizse kaldır */
    color: #333;
}
.text-content{
    padding-left: 10px;
    font-size: 1.3rem;
}
.text-content h5 {
    color: #4C4C4C; /* ← istediğin başka bir renk kodu da olabilir */
    font-size: 2rem;
}
.text-content li {
    margin-bottom: 0.8rem; /* Paragraflar arasında boşluk */
}


/* Hover'da Yazı Arka Planı */
.card-hover:hover .overlay {
    background: linear-gradient(to top, rgba(33, 33, 33, 1), rgba(255, 193, 7, 0.4));
}

/* Başlık */
.card-hover .overlay h5 {
    font-size: 1.60rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

/* Metin */
.card-hover .overlay p,
.card-hover .overlay li {
    font-size: 1.4rem;
    line-height: 1.7;
    margin: 0;
}

/* === Scroll Anchor Ayarı === */
section[id] {
    scroll-margin-top: 100px;
}

/* === Nabız Efekti İkon === */
.pulse-icon {
    height: 60px;
    width: 60px;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* === Carousel Yapısı === */
.carousel-container {
    max-width: 1200px;
    margin: 20px auto;
    position: relative;
    overflow: visible;
    user-select: none;
    height: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

}

.carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
    will-change: transform;
    width: 100%;
    height: auto; /* varsa */
    overflow: visible; /* Gerekirse */}

.carousel-card {
    flex: 0 0 33.3333%;
    box-sizing: border-box;
    padding: 0 10px;
    transform: scale(0.8);
    transition: transform 0.5s ease, opacity 0.5s ease;
    cursor: pointer;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch; /* Bu satır önemli */

}

.carousel-card.active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

/* Kart içeriği */
.card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-img-top {
    max-height: 500px;
    object-fit: contain;
}

/* === Kaydırma Butonları === */
.btn-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    background: transparent;
    border: none;
    color: #555;
    cursor: pointer;
    z-index: 20;
    user-select: none;
}

.btn-slide:hover {
    color: #000;
}

.btn-slide.left {
    left: 5px;
}

.btn-slide.right {
    right: 5px;
}
@media (max-width: 768px) {
    .carousel-container {
        max-width: 100%;
        overflow: visible;
    }

    .carousel-track {
        width: auto !important;
        max-height: 800px;
        margin-top: 0px !important;

    }

    .carousel-card {
        flex: 0 0 120% !important;
        margin: 0 10px;
        transform: scale(0.8);
        opacity: 0.8; /* Hafif transparan görünüm */
        transition: transform 0.4s ease, opacity 0.4s ease;
        height: 800px;
    }

    .carousel-card.active {
        transform: scale(1);
        opacity: 1; /* Aktif kart tamamen opak */
        z-index: 10;
    }

    .card-hover {
        flex-direction: column;
        background-color: #fff; /* ← Açık net arka plan rengi */
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Derinlik hissi */
    }

    .card-hover img {
        width: 100%;
        height: 180px;
        border-radius: 15px 15px 0 0;
        object-fit: contain;
    }

    .text-content {
        width: 100%;
        padding: 15px;
        color: #333;
    }

    .text-content h5 {
        color: #f05a22; /* Başlık rengi */
    }

    .text-content p{
    }
    .text-content li {
        color: #555;
    }
}

.btn-slide.right {
    right: 5px;
}

    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem; /* Küçük ekranlarda daha küçük başlık */
        }
        .hero-text {
            font-size: 1rem;  /* Açıklama da küçültüldü */
        }
    }

    @media (min-width: 577px) {
        .hero-title {
            font-size: 3.5rem;
        }
        .hero-text {
            font-size: 1.25rem;
        }
    }



.image-wrapper {
    width: 100%;
    max-width: 600px;  /* Görsel daha büyük */
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-section {
    padding-top: 100px; /* navbar yüksekliği + boşluk */
    padding-bottom: 60px;
}


.info-container {
    display: flex;
    gap: 40px;
    margin-bottom: 1rem;
    flex-wrap: nowrap; /* satır atlamasın */
    overflow: hidden;  /* taşan kısım gizlensin */
}

.info-item {
    white-space: nowrap;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px; /* Genişlik ihtiyaca göre değiştir */
}

.label {
    font-weight: 700;
    margin-right: 6px;
}

.value {
    font-weight: 400;
    color: #555;
}
.product-info h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
}

.label {
    font-weight: 700;
    margin-right: 6px;
}

.value {
    font-weight: 400;
    color: #555;
}






