
/* Genel Marquee (Kayan Yazı) Alanı */
.marquee-container {
    width: 100%;
    overflow: hidden;
    color: rgb(0, 0, 0);
    padding: 10px 0;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-textcontainer {
    white-space: nowrap;
    font-size: 14px;
    display: inline-block;
    animation: marquee 60s linear infinite;
    position: relative;
    left: 0;
}

.marquee-textcontainer span {
    padding: 0 28px;
    font-weight: bold;
}

/* Marquee Animasyonu */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Üst Yazı Alanı (Durağan Metin) */
.enustyazi-container {
    width: 100%;
    overflow: hidden;
    background-color: rgb(240, 219, 101);
    color: rgb(0, 0, 0);
    padding: 10px 0;
}

.enustyazi-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.enustyazi-textcontainer {
    white-space: nowrap;
    font-size: 15px;
    text-align: center;
    font-weight: 700;
}

.enustyazi-textcontainer span {
    padding: 0 28px;
    font-weight: bold;
}




.product-badges {
	position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    max-width: calc(100% - 20px);
	z-index: 100;
}

.product-badge {
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    color: white;
    white-space: nowrap;
}

.product-badge.ticianinda {
    background: #ff4757;
}

.product-badge.ticikargobedava {
    background: #2ecc71;
}

.product-badge.ticiyerli {
    background: #f1c40f;
}

.product-badge.ticiyeni {
    background: #9b59b6;
}

.main-card .image-box {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-card .image-box img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}


.img-sec .swiper.p-thumbs .swiper-slide img {
    max-height: 100%;
    height: auto;
}