/* Genel Stil */
.shoppable-video-container {
    position: relative;
    max-width: 350px;
    margin: 20px auto;
}

.shoppable-video-wrapper {
    position: relative;
    width: 350px;
    height: 700px;
}

.shoppable-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    z-index: 1; /* Video alt katman */
}

.shoppable-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Overlay katmanı */
    pointer-events: none;
}

.shoppable-view-count {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    pointer-events: auto;
    z-index: 3; /* Üstte kalması için */
}

/* Tam Genişlik Tasarımı */
.shoppable-video-container.full-width .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    border-radius: 10px;
    overflow: visible;
    background-color: rgba(0, 0, 0, 0.9);
}

.shoppable-video-container.full-width video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    pointer-events: none;
}

.shoppable-video-container.full-width video::-webkit-media-controls {
    display: none !important;
}

.shoppable-video-container.full-width .overlay-box {
    position: absolute;
    bottom: 15px;
    width: 325px;
    height: 115px;
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
    padding: 5px;
    z-index: 2;
}

.shoppable-video-container.full-width .image-box {
    width: 85px;
    height: 85px;
    margin-right: 5px;
    flex-shrink: 0;
}

.shoppable-video-container.full-width .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.shoppable-video-container.full-width .text-box {
    flex: 1;
    text-align: center;
    font-size: clamp(8px, 1vw, 12px);
    overflow: hidden;
}

.shoppable-video-container.full-width .product-name {
    font-size: 14px;
    position: relative;
    top: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: rgb(255, 255, 255);
}

.shoppable-video-container.full-width .product-price {
    margin: 3px 0;
    font-size: 14px;
    color: #ffffff;
}

.shoppable-video-container.full-width .button.view-product-button {
    display: block;
    width: clamp(120px, 20vw, 140px);
    height: clamp(25px, 5vh, 30px);
    font-size: clamp(12px, 1.2vw, 16px);
    text-align: center;
    padding: 7px 7px;
    background-color: #e30e7c00;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    margin: auto;
    pointer-events: auto;
    z-index: 4;
}

/* Diğer Tasarımlar için Varsayılan Stil */
.shoppable-video-container:not(.full-width) .shoppable-video-overlay h3 {
    position: absolute;
    bottom: 40px;
    left: 10px;
    margin: 0;
    font-size: 16px;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 3px;
    pointer-events: auto;
}

.shoppable-video-container:not(.full-width) .shoppable-video-overlay .button {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 8px 15px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    pointer-events: auto;
}

.shoppable-video-container:not(.full-width) .shoppable-video-overlay .button:hover {
    background: #005d82;
}

/* Klasik Stil */
.shoppable-video-container.classic .classic-overlay {
    position: relative;
    height: 100%;
}

.shoppable-video-container.classic .shopping-bag-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 5;
    pointer-events: auto;
}

.shoppable-video-container.classic .shopping-bag-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shoppable-video-container.classic .classic-product-popup {
    position: fixed;
    bottom: -400px; /* Başlangıçta gizli */
    left: 0;
    width: 100%;
    height: 400px;
    background: #fff;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    transition: bottom 0.3s ease; /* Yumuşak geçiş */
    z-index: 10000;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: auto;
}

.shoppable-video-container.classic .classic-product-popup.active {
    bottom: 0; /* Açıldığında yukarı çıkar */
}

.shoppable-video-container.classic .product-info {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.shoppable-video-container.classic .popup-image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shoppable-video-container.classic .popup-product-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.shoppable-video-container.classic .popup-details-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 10px;
}

.shoppable-video-container.classic .popup-product-name {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.shoppable-video-container.classic .popup-product-description {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.shoppable-video-container.classic .popup-price-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.shoppable-video-container.classic .popup-product-price {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.shoppable-video-container.classic .custom-view-product-button {
    display: inline-block;
    padding: 10px 20px;
    background: url('https://via.placeholder.com/150x50/28a745/ffffff?text=Ürüne+Git') no-repeat center center;
    background-size: cover;
    color: transparent;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    width: 150px;
    height: 50px;
    transition: opacity 0.3s ease;
}

/* Modern Stil */
.shoppable-video-container.modern .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
}

.shoppable-video-container.modern .modern-overlay {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    pointer-events: none;
    z-index: 3;
}

.shoppable-video-container.modern .modern-product-button {
    pointer-events: auto;
}

.shoppable-video-container.modern .modern-view-product-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    z-index: 3;
}

.shoppable-video-container.modern .modern-view-product-button:hover {
    background-color: #f0f0f0;
}

.shoppable-video-container.modern .modern-view-product-button .arrow-icon {
    margin-left: 5px;
    font-size: 16px;
    color: #000000;
}

/* YouTube Shorts Stil */
.shoppable-video-container.shorts .shorts-overlay {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    padding: 10px;
    pointer-events: none;
    z-index: 3;
}

.shoppable-video-container.shorts .shorts-product-info {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    pointer-events: auto;
}

.shoppable-video-container.shorts .shorts-product-image {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.shoppable-video-container.shorts .shorts-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.shoppable-video-container.shorts .shorts-product-details {
    display: flex;
    flex-direction: column;
}

.shoppable-video-container.shorts .shorts-product-name {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shoppable-video-container.shorts .shorts-product-price {
    margin: 5px 0 0;
    font-size: 14px;
    color: #333;
}

/* Shorts Popup */
.shoppable-video-container.shorts .shorts-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #ccc;
    border-radius: 10px;
    z-index: 10001;
    display: none;
    justify-content: center;
    align-items: center;
}

.shoppable-video-container.shorts .shorts-popup-content {
    display: flex;
    width: 100%;
    height: 100%;
}

.shoppable-video-container.shorts .shorts-video-section {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    pointer-events: none;
}

.shoppable-video-container.shorts .shorts-video-section video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shoppable-video-container.shorts .shorts-info-section {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    pointer-events: auto;
}

.shoppable-video-container.shorts .shorts-gallery {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.shoppable-video-container.shorts .shorts-gallery-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.shoppable-video-container.shorts .shorts-popup-product-name {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #333;
}

.shoppable-video-container.shorts .shorts-popup-product-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px;
    max-height: 150px;
    overflow-y: auto;
}

.shoppable-video-container.shorts .shorts-view-product-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    pointer-events: auto;
    z-index: 10002;
}

.shoppable-video-container.shorts .shorts-view-product-button:hover {
    background-color: #005d82;
}

/* Minimalist Stil */
.shoppable-video-container.minimalist .minimalist-overlay {
    position: absolute;
    bottom: 44px; /* Buton (24px) + 5px boşluk + 10px taban */
    left: 10px;
    width: calc(100% - 20px);
    max-width: 330px;
    background: rgba(95, 83, 83, 0);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    gap: 10px;
    pointer-events: none;
    overflow: hidden;
}

.shoppable-video-container.minimalist .minimalist-image-box {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.shoppable-video-container.minimalist .minimalist-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.shoppable-video-container.minimalist .minimalist-info-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    pointer-events: auto;
    max-width: 230px;
}

.shoppable-video-container.minimalist .minimalist-product-name {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shoppable-video-container.minimalist .minimalist-product-price {
    margin: 0 0 5px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shoppable-video-container.minimalist .minimalist-rating {
    margin: 0;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shoppable-video-container.minimalist .stars {
    color: #ffcc00; /* Yıldız rengi altın sarısı */
    font-size: 12px;
}

.shoppable-video-container.minimalist .comment-count {
    color: #fff;
    font-size: 12px;
    margin-left: 5px;
}

.shoppable-video-container.minimalist .minimalist-view-product-button {
    position: absolute;
    bottom: 10px; /* Video’nun altından 10px yukarıda */
    left: 10px;
    width: calc(100% - 20px); /* Overlay ile aynı genişlik */
    max-width: 330px; /* Overlay ile uyumlu maksimum genişlik */
    padding: 8px;
    background: #e7b1c1;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    transition: background-color 0.3s ease;
    pointer-events: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shoppable-video-container.minimalist .minimalist-view-product-button:hover {
    background: #005d82;
}

/* Mobil için medya sorgusu */
@media (max-width: 768px) {
    .shoppable-video-container.classic .classic-product-popup {
        height: 50%;
        bottom: -50%;
        overflow-y: auto;
        max-height: 50vh;
    }

    .shoppable-video-container.classic .product-info {
        flex-direction: column;
        align-items: center;
        min-height: 100%;
    }

    .shoppable-video-container.classic .popup-image-section,
    .shoppable-video-container.classic .popup-details-section,
    .shoppable-video-container.classic .popup-price-section {
        flex: 1 1 auto;
        width: 100%;
        padding: 10px 0;
    }

    .shoppable-video-container.classic .popup-price-section {
        align-items: center;
    }

    .shoppable-video-container.classic .popup-product-image {
        max-width: 120px;
        max-height: 150px;
    }

    .shoppable-video-container.shorts .shorts-popup {
        width: 90%;
        height: 90%;
        max-width: 400px;
        max-height: 600px;
    }

    .shoppable-video-container.shorts .shorts-popup-content {
        flex-direction: column;
    }

    .shoppable-video-container.shorts .shorts-video-section,
    .shoppable-video-container.shorts .shorts-info-section {
        width: 100%;
        height: 50%;
    }

    .shoppable-video-container.shorts .shorts-gallery-image {
        width: 80px;
        height: 80px;
    }
}
/* Kart Stil - Yan Yana Kaydırılabilir Ürünler (Solda Boşluk, Sağda Tam Oturma) */
.shoppable-video-container.card-style {
    position: relative; /* Video sınırlarını belirler */
}

/* Kart Konteyneri - Sol Boşluklu, Sağda Boşluk Yok */
.shoppable-video-container.card-style .card-style-container {
    position: absolute;
    bottom: 10px;
    left: 10px; /* Solda boşluk bırak */
    width: calc(100% - 10px); /* Sağ kenara tam oturacak */
    max-width: 100%; /* Video genişliğini aşmaz */
    height: 120px; /* Kart yüksekliği */
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: row; /* Yan yana dizilim */
    gap: 10px;
    overflow-x: auto; /* Yatay kaydırmayı aç */
    overflow-y: hidden;
    white-space: nowrap; /* Kartlar tek satırda kalacak */
    pointer-events: auto;
    z-index: 3;
    scroll-snap-type: x mandatory; /* Kartlar tam hizalı kayar */
    -webkit-overflow-scrolling: touch; /* Mobil cihazlar için akıcı kaydırma */
    justify-content: flex-start; /* Kartları sola hizala */

    /* Masaüstünde kaydırma çubuğunu gizle */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}

/* Chrome, Safari ve Edge için scrollbar gizleme */
.shoppable-video-container.card-style .card-style-container::-webkit-scrollbar {
    display: none;
}

/* Ürün Kutusu */
.shoppable-video-container.card-style .card-product-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0; /* Kartlar küçülmez */
    width: 230px; /* Her kartın sabit genişliği */
    scroll-snap-align: start; /* Kartlar hizalı kayar */
}

/* Ürün Resmi */
.shoppable-video-container.card-style .card-product-image-box {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.shoppable-video-container.card-style .card-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* Ürün Bilgileri */
.shoppable-video-container.card-style .card-product-info-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #fff;
}

/* Ürün Adı */
.shoppable-video-container.card-style .card-product-name {
    font-size: clamp(10px, 1.8vw, 14px);
    font-weight: bold;
    margin: 0;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

/* Ürün Fiyatı */
.shoppable-video-container.card-style .card-product-price {
    font-size: 14px;
    margin: 5px 0;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%; /* Taşmayı engelle */
}

/* Ürüne Git Butonu */
.shoppable-video-container.card-style .card-view-product-button {
    display: block;
    padding: 8px 15px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    text-align: center;
    transition: background-color 0.3s ease;
    
}

.shoppable-video-container.card-style .card-view-product-button:hover {
    background: #c43182cc;
}
/* Mobil için medya sorgusu */
@media (max-width: 768px) {
    .shoppable-video-container.card-style .card-style-container {
        width: calc(100% - 10px); /* Mobilde genişliği koru */
        height: 110px;
    }

    .shoppable-video-container.card-style .card-product-box {
        width: 200px;
    }

    .shoppable-video-container.card-style .card-product-image-box {
        width: 60px;
        height: 60px;
    }

    .shoppable-video-container.card-style .card-product-name {
        font-size: clamp(10px, 1.8vw, 14px);
    }

    .shoppable-video-container.card-style .card-product-price {
        font-size: 12px;
    }

    .shoppable-video-container.card-style .card-view-product-button {
        font-size: clamp(10px, 1.8vw, 14px);
    }
}
/* Sport Stil */
.shoppable-video-container.sport .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
}

.shoppable-video-container.sport .sport-info-box {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-width: 330px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    gap: 10px;
    pointer-events: auto;
    z-index: 3;
}

.shoppable-video-container.sport .sport-product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.shoppable-video-container.sport .sport-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.shoppable-video-container.sport .sport-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
}

.shoppable-video-container.sport .sport-product-name {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shoppable-video-container.sport .sport-product-price {
    margin: 0 0 5px;
    font-size: 14px;
    color: #000;
}

.shoppable-video-container.sport .sport-product-comments {
    margin: 0 0 5px;
    font-size: 12px;
    color: #666;
}

.shoppable-video-container.sport .sport-view-product-button {
    display: inline-block;
    padding: 8px 15px;
    background: #28a745; /* Yeşil ton */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    transition: background-color 0.3s ease;
    pointer-events: auto;
}

.shoppable-video-container.sport .sport-view-product-button:hover {
    background: #218838; /* Daha koyu yeşil */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.sport .sport-info-box {
        width: calc(100% - 20px);
        max-width: 330px;
    }

    .shoppable-video-container.sport .sport-product-image {
        width: 60px;
        height: 60px;
    }

    .shoppable-video-container.sport .sport-product-name {
        font-size: 14px;
    }

    .shoppable-video-container.sport .sport-product-price {
        font-size: 12px;
    }

    .shoppable-video-container.sport .sport-product-comments {
        font-size: 10px;
    }

    .shoppable-video-container.sport .sport-view-product-button {
        font-size: 12px;
        padding: 6px 12px;
    }
}


/* Overlay Buton Konteyneri */
.overlay-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    pointer-events: auto;
}

/* Overlay Butonu */
.overlay-button {
    display: inline-block;
    max-width: 250px; /* Butonun maksimum genişliği */
    min-width: 180px; /* Butonun en küçük hali */
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background: #86dddd;
    border: 2px solid #000;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap; /* Tek satırda kalsın */
    overflow: hidden;
    text-overflow: ellipsis; /* Uzun isimler üç nokta (...) ile kısaltılsın */
}

/* Buton içindeki yazıyı uzunluğa göre otomatik küçült */
.overlay-button span {
    display: inline-block;
    max-width: 100%;
    font-size: clamp(12px, 4vw, 16px); /* Ekran boyutuna göre otomatik küçült */
}

/* Frozen Stil */
.shoppable-video-container.frozen .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
}

.shoppable-video-container.frozen .frozen-info-box {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-width: 330px;
    background: rgba(240, 248, 255, 0.9); /* Hafif mavi-beyaz arka plan */
    border-radius: 10px;
    padding: 10px;
    display: flex;
    gap: 10px;
    pointer-events: auto;
    z-index: 3;
    box-shadow: 0 0 10px rgba(0, 0, 255, 0.1); /* Hafif mavi gölge */
}

.shoppable-video-container.frozen .frozen-product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.shoppable-video-container.frozen .frozen-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #87ceeb; /* Hafif mavi çerçeve */
}

.shoppable-video-container.frozen .frozen-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
}

.shoppable-video-container.frozen .frozen-product-name {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #4682b4; /* Çelik mavisi */
}

.shoppable-video-container.frozen .frozen-product-price {
    margin: 0 0 5px;
    font-size: 14px;
    color: #000;
}

.shoppable-video-container.frozen .frozen-product-comments {
    margin: 0 0 5px;
    font-size: 12px;
    color: #666;
}

.shoppable-video-container.frozen .frozen-view-product-button {
    display: inline-block;
    padding: 8px 15px;
    background: #4682b4; /* Çelik mavisi */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    transition: background-color 0.3s ease;
    pointer-events: auto;
}

.shoppable-video-container.frozen .frozen-view-product-button:hover {
    background: #32678d; /* Daha koyu mavi */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.frozen .frozen-info-box {
        width: calc(100% - 20px);
        max-width: 330px;
    }

    .shoppable-video-container.frozen .frozen-product-image {
        width: 60px;
        height: 60px;
    }

    .shoppable-video-container.frozen .frozen-product-name {
        font-size: 14px;
    }

    .shoppable-video-container.frozen .frozen-product-price {
        font-size: 12px;
    }

    .shoppable-video-container.frozen .frozen-product-comments {
        font-size: 10px;
    }

    .shoppable-video-container.frozen .frozen-view-product-button {
        font-size: 12px;
        padding: 6px 12px;
    }
}
/* Force Stil */
.shoppable-video-container.force .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Hafif ve doğal gölge */
}

.shoppable-video-container.force .force-info-box {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
    max-width: 320px;
    background: linear-gradient(135deg, #2a2a4a 0%, #3b3b5c 100%); /* Daha yumuşak gradient */
    border-radius: 10px;
    padding: 12px;
    display: flex;
    gap: 12px;
    pointer-events: auto;
    z-index: 3;
    border: 1px solid #66cccc; /* Daha az parlak cyan çerçeve */
    box-shadow: 0 0 5px rgba(102, 204, 204, 0.3); /* Minimal neon parlama */
    transition: box-shadow 0.3s ease;
}

.shoppable-video-container.force .force-info-box:hover {
    box-shadow: 0 0 8px rgba(102, 204, 204, 0.5); /* Hafif hover efekti */
}

.shoppable-video-container.force .force-product-image {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    position: relative;
}

.shoppable-video-container.force .force-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #66cccc; /* Minimal cyan çerçeve */
    box-shadow: 0 0 4px rgba(102, 204, 204, 0.2); /* Çok hafif parlama */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shoppable-video-container.force .force-product-image img:hover {
    transform: scale(1.03); /* Daha az büyüme */
    box-shadow: 0 0 6px rgba(102, 204, 204, 0.4); /* Hafif parlama artışı */
}

.shoppable-video-container.force .force-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.shoppable-video-container.force .force-product-name {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #66cccc; /* Daha az parlak cyan */
    text-shadow: 0 0 2px rgba(102, 204, 204, 0.3); /* Minimal gölge */
    transition: text-shadow 0.3s ease;
}

.shoppable-video-container.force .force-product-name:hover {
    text-shadow: 0 0 4px rgba(102, 204, 204, 0.5); /* Hafif hover parlama */
}

.shoppable-video-container.force .force-product-price {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.2); /* Çok hafif gölge */
}

.shoppable-video-container.force .force-product-comments {
    margin: 0 0 8px;
    font-size: 12px;
    color: #b0b0b0;
    text-shadow: 0 0 1px rgba(176, 176, 176, 0.2); /* Minimal gölge */
}

.shoppable-video-container.force .force-view-product-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #66cccc, #4db8b8); /* Daha yumuşak gradient */
    color: #2a2a4a; /* Koyu kontrast */
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 0 4px rgba(102, 204, 204, 0.3); /* Hafif parlama */
}

.shoppable-video-container.force .force-view-product-button:hover {
    background: linear-gradient(90deg, #4db8b8, #66cccc); /* Ters gradient */
    transform: translateY(-1px); /* Daha az yükselme */
    box-shadow: 0 0 6px rgba(102, 204, 204, 0.5); /* Minimal hover parlama */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.force .force-info-box {
        width: calc(100% - 20px);
        max-width: 310px;
        padding: 10px;
    }

    .shoppable-video-container.force .force-product-image {
        width: 70px;
        height: 70px;
    }

    .shoppable-video-container.force .force-product-name {
        font-size: 16px;
    }

    .shoppable-video-container.force .force-product-price {
        font-size: 14px;
    }

    .shoppable-video-container.force .force-product-comments {
        font-size: 11px;
    }

    .shoppable-video-container.force .force-view-product-button {
        font-size: 12px;
        padding: 8px 16px;
    }
}
/* Hakan Stil */
.shoppable-video-container.hakan .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 20px; /* Yuvarlak kenarlar */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Hafif gölge */
}

.shoppable-video-container.hakan .hakan-info-box {
    position: absolute;
    bottom: 0; /* Alttan tam kaplaması için */
    left: 0; /* Sol kenardan başlasın */
    width: 350px; /* Sabit 350px genişlik */
    height: 200px; /* Sabit 150px yükseklik */
    background: #ffffff; /* Beyaz arka plan */
    border-radius: 0 0 20px 20px; /* Üstte düz, altta yuvarlak */
    padding: 15px;
    display: flex;
    gap: 15px;
    pointer-events: auto;
    z-index: 3;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1); /* Üstten hafif gölge */
}

.shoppable-video-container.hakan .hakan-product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
}

.shoppable-video-container.hakan .hakan-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Tam yuvarlak resim */
    border: 2px solid #1145a5; /* Koyu kahverengi çerçeve */
    transition: transform 0.3s ease;
}

.shoppable-video-container.hakan .hakan-product-image img:hover {
    transform: scale(1.05); /* Hafif büyüme */
}

.shoppable-video-container.hakan .hakan-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #3c2f2f; /* Koyu kahverengi metin */
}

.shoppable-video-container.hakan .hakan-product-name {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #3c2f2f; /* Koyu kahverengi */
}

.shoppable-video-container.hakan .hakan-product-price {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 500;
    color: #5e3e1f; /* Orta kahverengi */
}

.shoppable-video-container.hakan .hakan-product-comments {
    margin: 0 0 8px;
    font-size: 12px;
    color: #7a5a3a; /* Açık kahverengi */
}

.shoppable-video-container.hakan .hakan-view-product-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #8c5523, #a66d3a); /* Kahverengi gradient */
    color: #fff;
    text-decoration: none;
    border-radius: 20px; /* Yuvarlak buton */
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* Hafif gölge */
}

.shoppable-video-container.hakan .hakan-view-product-button:hover {
    background: linear-gradient(90deg, #a66d3a, #8c5523); /* Ters gradient */
    transform: translateY(-2px); /* Hafif yükselme */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25); /* Daha belirgin gölge */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.hakan .hakan-info-box {
        width: 350px; /* Mobilde de tam genişlik */
        height: 150px; /* Sabit yükseklik */
        padding: 12px;
        left: 0; /* Sol kenardan başlasın */
    }

    .shoppable-video-container.hakan .hakan-product-image {
        width: 70px;
        height: 70px;
    }

    .shoppable-video-container.hakan .hakan-product-name {
        font-size: 16px;
    }

    .shoppable-video-container.hakan .hakan-product-price {
        font-size: 14px;
    }

    .shoppable-video-container.hakan .hakan-product-comments {
        font-size: 11px;
    }

    .shoppable-video-container.hakan .hakan-view-product-button {
        font-size: 12px;
        padding: 8px 16px;
    }
}
/* Başmelek Stil */
.shoppable-video-container.basmelek .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 15px; /* Hafif yuvarlak kenarlar */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Yumuşak gölge */
}

.shoppable-video-container.basmelek .basmelek-info-box {
    position: absolute;
    bottom: 0; /* Alttan tam kaplaması için */
    left: 0; /* Sol kenardan başlasın */
    width: 350px; /* Sabit 350px genişlik */
    height: 170px; /* Sabit 150px yükseklik */
    background: #ffffff; /* Beyaz arka plan */
    border-radius: 0 0 15px 15px; /* Üstte düz, altta yuvarlak */
    padding: 15px;
    display: flex;
    gap: 15px;
    pointer-events: auto;
    z-index: 3;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1); /* Üstten hafif gölge */
}

.shoppable-video-container.basmelek .basmelek-product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
    top: -30px; /* Resmi yukarı kaydırma */
}

.shoppable-video-container.basmelek .basmelek-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Kare şekil için yuvarlaklık kaldırıldı */
    border: 2px solid #000000; /* Altın çerçeve */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0); /* Hafif altın parlama */
    transition: transform 0.3s ease;
}

.shoppable-video-container.basmelek .basmelek-product-image img:hover {
    transform: scale(1.05); /* Hafif büyüme */
}

.shoppable-video-container.basmelek .basmelek-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000000; /* Koyu mor metin */
}

.shoppable-video-container.basmelek .basmelek-product-name {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000000; /* Koyu mor */
}

.shoppable-video-container.basmelek .basmelek-product-price {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 500;
    color: #000000; /* Orta mor */
}

.shoppable-video-container.basmelek .basmelek-product-comments {
    margin: 0 0 8px;
    font-size: 12px;
    color: #000000; /* Açık mor */
}

.shoppable-video-container.basmelek .basmelek-view-product-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #d4af37, #e8c565); /* Altın gradient */
    color: #000000; /* Koyu mor metin */
    text-decoration: none;
    border-radius: 20px; /* Yuvarlak buton */
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3); /* Hafif altın gölge */
}

.shoppable-video-container.basmelek .basmelek-view-product-button:hover {
    background: linear-gradient(90deg, #e8c565, #d4af37); /* Ters altın gradient */
    transform: translateY(-2px); /* Hafif yükselme */
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4); /* Daha belirgin gölge */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.basmelek .basmelek-info-box {
        width: 350px; /* Mobilde de tam genişlik */
        height: 150px; /* Sabit yükseklik */
        padding: 12px;
        left: 0; /* Sol kenardan başlasın */
    }

    .shoppable-video-container.basmelek .basmelek-product-image {
        width: 70px;
        height: 70px;
        top: -15px; /* Mobilde daha az kaydırma */
    }

    .shoppable-video-container.basmelek .basmelek-product-name {
        font-size: 16px;
    }

    .shoppable-video-container.basmelek .basmelek-product-price {
        font-size: 14px;
    }

    .shoppable-video-container.basmelek .basmelek-product-comments {
        font-size: 11px;
    }

    .shoppable-video-container.basmelek .basmelek-view-product-button {
        font-size: 12px;
        padding: 8px 16px;
    }
}
/* Mango Stil */
.shoppable-video-container.mango .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 0; /* Keskin hatlar */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Minimal gölge */
}

.shoppable-video-container.mango .mango-info-box {
    position: absolute;
    bottom: 0; /* Alttan tam kaplama */
    left: 0;
    width: 350px; /* Tam genişlik */
    height: 120px; /* Daha kısa bir kutu */
    background: #e6e6e6; /* Açık gri arka plan */
    border-radius: 0; /* Keskin köşeler */
    padding: 15px;
    display: flex;
    gap: 20px;
    pointer-events: auto;
    z-index: 3;
    border-top: 2px solid #333333; /* Üstte koyu gri çizgi */
}

.shoppable-video-container.mango .mango-product-image {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    position: relative;
    top: -30px; /* Resmi yukarı kaydırarak kutunun dışına taşır */
}

.shoppable-video-container.mango .mango-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Kare şekil */
    border: 2px solid #333333; /* Koyu gri çerçeve */
    box-shadow: 0 0 6px rgba(51, 51, 51, 0.3); /* Hafif gri gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shoppable-video-container.mango .mango-product-image img:hover {
    transform: scale(1.03); /* Hafif büyüme */
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.5); /* Daha belirgin gölge */
}

.shoppable-video-container.mango .mango-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ürün ismi üstte, fiyat altta */
    color: #333333; /* Koyu gri metin */
}

.shoppable-video-container.mango .mango-product-name {
    margin: 0 0 8px; /* Alttaki boşluk artırıldı */
    font-size: 12px; /* Büyük font boyutu korundu */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000000; /* Koyu gri */
    order: 1; /* Üstte yer alır */
}

.shoppable-video-container.mango .mango-product-price {
    margin: 0 0 8px; /* Alttaki boşluk artırıldı */
    font-size: 14px; /* Küçük font boyutu korundu */
    font-weight: 500;
    color: #000000; /* Orta gri */
    order: 2; /* Ortada yer alır */
}

.shoppable-video-container.mango .mango-view-product-button {
    display: inline-block;
    padding: 8px 18px;
    background: #000000; /* Koyu gri */
    color: #ffffff; /* Beyaz metin */
    text-decoration: none;
    border-radius: 0; /* Keskin köşeler */
    font-size: 13px; /* Küçük font boyutu korundu */
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    order: 3; /* En altta yer alır */
}

.shoppable-video-container.mango .mango-view-product-button:hover {
    background: #555555; /* Orta gri */
    transform: translateY(-2px); /* Hafif yükselme */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Daha belirgin gölge */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.mango .mango-info-box {
        width: 350px; /* Mobilde tam genişlik */
        height: 120px;
        padding: 12px;
    }

    .shoppable-video-container.mango .mango-product-image {
        width: 80px;
        height: 80px;
        top: -25px; /* Mobilde biraz daha az kaydırma */
    }

    .shoppable-video-container.mango .mango-product-name {
        font-size: 20px; /* Mobilde biraz küçültme */
    }

    .shoppable-video-container.mango .mango-product-price {
        font-size: 13px; /* Fiyat mobilde küçültüldü */
    }

    .shoppable-video-container.mango .mango-view-product-button {
        font-size: 12px;
        padding: 6px 16px;
    }
}
/* Lemon Stil */
.shoppable-video-container.lemon .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 5px; /* Minimal yuvarlaklık */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Koyu gölge */
}

.shoppable-video-container.lemon .lemon-info-box {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
    max-width: 320px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%); /* Koyu mor gradient */
    border-radius: 5px;
    padding: 15px;
    display: flex;
    gap: 15px;
    pointer-events: auto;
    z-index: 3;
    border: 1px solid #000000; /* Altın çerçeve */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); /* Derin gölge */
}

.shoppable-video-container.lemon .lemon-product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
}

.shoppable-video-container.lemon .lemon-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Kare şekil */
    border: 2px solid #ffffff; /* Altın çerçeve */
    transition: transform 0.3s ease;
}

.shoppable-video-container.lemon .lemon-product-image img:hover {
    transform: scale(1.05); /* Hafif büyüme */
}

.shoppable-video-container.lemon .lemon-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ürün ismi üstte, fiyat ortada, buton altta */
    color: #ffffff; /* Beyaz metin */
}

.shoppable-video-container.lemon .lemon-product-name {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000000; /* Altın renk */
    order: 1; /* Üstte */
}

.shoppable-video-container.lemon .lemon-product-price {
    margin: 5px 0;
    font-size: 16px;
    font-weight: 500;
    color: #000000; /* Açık gri */
    order: 2; /* Ortada */
}

.shoppable-video-container.lemon .lemon-view-product-button {
    display: inline-block;
    padding: 8px 18px;
    background: #58aee7; /* Altın arka plan */
    color: #2c1b47; /* Koyu mor metin */
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.753); /* Hafif altın gölge */
    order: 3; /* Altta */
}

.shoppable-video-container.lemon .lemon-view-product-button:hover {
    background: #67bd8d; /* Daha açık altın */
    transform: translateY(-2px); /* Hafif yükselme */
    box-shadow: 0 4px 6px rgba(255, 215, 0, 0.4); /* Daha belirgin gölge */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.lemon .lemon-info-box {
        width: calc(100% - 30px);
        max-width: 300px;
        padding: 12px;
    }

    .shoppable-video-container.lemon .lemon-product-image {
        width: 70px;
        height: 70px;
    }

    .shoppable-video-container.lemon .lemon-product-name {
        font-size: 18px;
    }

    .shoppable-video-container.lemon .lemon-product-price {
        font-size: 14px;
    }

    .shoppable-video-container.lemon .lemon-view-product-button {
        font-size: 12px;
        padding: 6px 16px;
    }
}
/* Porto Stil */
.shoppable-video-container.porto .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Hafif yuvarlak kenarlar */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Yumuşak gölge */
}

.shoppable-video-container.porto .porto-info-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    max-width: 310px;
    background: linear-gradient(135deg, #1e2a44 0%, #2c3e66 100%); /* Koyu mavi gradient */
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 15px;
    pointer-events: auto;
    z-index: 3;
    border: 1px solid #ffffff; /* Beyaz çerçeve */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Hafif gölge */
}

.shoppable-video-container.porto .porto-product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
}

.shoppable-video-container.porto .porto-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Kare şekil */
    border: 2px solid #ffffff; /* Beyaz çerçeve */
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3); /* Hafif beyaz parlama */
    transition: transform 0.3s ease;
}

.shoppable-video-container.porto .porto-product-image img:hover {
    transform: scale(1.05); /* Hafif büyüme */
}

.shoppable-video-container.porto .porto-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ürün ismi üstte, fiyat ortada, buton altta */
    color: #ffffff; /* Beyaz metin */
}

.shoppable-video-container.porto .porto-product-name {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ffffff; /* Beyaz */
    order: 1; /* Üstte */
}

.shoppable-video-container.porto .porto-product-price {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
    color: #cccccc; /* Açık gri */
    order: 2; /* Ortada */
}

.shoppable-video-container.porto .porto-view-product-button {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(90deg, #ffffff, #e6e6e6); /* Beyaz gradient */
    color: #1e2a44; /* Koyu mavi metin */
    text-decoration: none;
    border-radius: 6px; /* Hafif yuvarlak buton */
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    order: 3; /* Altta */
}

.shoppable-video-container.porto .porto-view-product-button:hover {
    background: linear-gradient(90deg, #e6e6e6, #ffffff); /* Ters gradient */
    transform: translateY(-2px); /* Hafif yükselme */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Daha belirgin gölge */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.porto .porto-info-box {
        width: calc(100% - 30px);
        max-width: 290px;
        padding: 12px;
    }

    .shoppable-video-container.porto .porto-product-image {
        width: 70px;
        height: 70px;
    }

    .shoppable-video-container.porto .porto-product-name {
        font-size: 16px;
    }

    .shoppable-video-container.porto .porto-product-price {
        font-size: 14px;
    }

    .shoppable-video-container.porto .porto-view-product-button {
        font-size: 12px;
        padding: 6px 16px;
    }
}
/* Apple Stil */
.shoppable-video-container.apple .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 16px; /* Yuvarlak kenarlar */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

.shoppable-video-container.apple .apple-info-box {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
    max-width: 320px;
    background: #ffffff; /* Beyaz arka plan */
    border-radius: 12px;
    padding: 15px;
    display: flex;
    gap: 15px;
    pointer-events: auto;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* Hafif gölge */
}

.shoppable-video-container.apple .apple-product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
}

.shoppable-video-container.apple .apple-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Kare şekil */
    border: 2px solid #2e7d32; /* Koyu yeşil çerçeve */
    transition: transform 0.3s ease;
}

.shoppable-video-container.apple .apple-product-image img:hover {
    transform: scale(1.05); /* Hafif büyüme */
}

.shoppable-video-container.apple .apple-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ürün ismi üstte, fiyat ortada, buton altta */
    color: #333333; /* Koyu gri metin */
}

.shoppable-video-container.apple .apple-product-name {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #2e7d32; /* Koyu yeşil */
    order: 1; /* Üstte */
}

.shoppable-video-container.apple .apple-product-price {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
    color: #555555; /* Orta gri */
    order: 2; /* Ortada */
}

.shoppable-video-container.apple .apple-view-product-button {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(90deg, #2e7d32, #4caf50); /* Koyu yeşilden açık yeşile gradient */
    color: #ffffff; /* Beyaz metin */
    text-decoration: none;
    border-radius: 8px; /* Yuvarlak buton */
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 4px rgba(46, 125, 50, 0.3); /* Hafif yeşil gölge */
    order: 3; /* Altta */
}

.shoppable-video-container.apple .apple-view-product-button:hover {
    background: linear-gradient(90deg, #4caf50, #2e7d32); /* Ters gradient */
    transform: translateY(-2px); /* Hafif yükselme */
    box-shadow: 0 4px 6px rgba(46, 125, 50, 0.4); /* Daha belirgin gölge */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.apple .apple-info-box {
        width: calc(100% - 30px);
        max-width: 300px;
        padding: 12px;
    }

    .shoppable-video-container.apple .apple-product-image {
        width: 70px;
        height: 70px;
    }

    .shoppable-video-container.apple .apple-product-name {
        font-size: 18px;
    }

    .shoppable-video-container.apple .apple-product-price {
        font-size: 14px;
    }

    .shoppable-video-container.apple .apple-view-product-button {
        font-size: 12px;
        padding: 6px 16px;
    }
}
/* Banana Stil */
.shoppable-video-container.banana .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 0; /* Keskin hatlar */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Koyu gölge */
}

.shoppable-video-container.banana .banana-info-box {
    position: absolute;
    bottom: 0; /* Alttan tam kaplama */
    left: 0;
    width: 350px; /* Tam genişlik */
    height: 140px; /* Daha geniş kutu */
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%); /* Koyu gri gradient */
    border-radius: 0 0 0 0; /* Keskin köşeler */
    padding: 20px;
    display: flex;
    gap: 20px;
    pointer-events: auto;
    z-index: 3;
    border-top: 2px solid #c0c0c0; /* Gümüş üst çizgi */
}

.shoppable-video-container.banana .banana-product-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    position: relative;
    top: -40px; /* Resmi yukarı taşır */
}

.shoppable-video-container.banana .banana-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Kare şekil */
    border: 2px solid #c0c0c0; /* Gümüş çerçeve */
    box-shadow: 0 0 6px rgba(192, 192, 192, 0.3); /* Hafif gümüş parlama */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shoppable-video-container.banana .banana-product-image img:hover {
    transform: scale(1.05); /* Hafif büyüme */
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.5); /* Daha belirgin parlama */
}

.shoppable-video-container.banana .banana-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ürün ismi üstte, fiyat ortada, buton altta */
    color: #ffffff; /* Beyaz metin */
}

.shoppable-video-container.banana .banana-product-name {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ffffff; /* Beyaz */
    order: 1; /* Üstte */
}

.shoppable-video-container.banana .banana-product-price {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
    color: #b0b0b0; /* Açık gri */
    order: 2; /* Ortada */
}

.shoppable-video-container.banana .banana-view-product-button {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(90deg, #c0c0c0, #d9d9d9); /* Gümüş gradient */
    color: #1a1a1a; /* Koyu gri metin */
    text-decoration: none;
    border-radius: 0; /* Keskin köşeler */
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    order: 3; /* Altta */
}

.shoppable-video-container.banana .banana-view-product-button:hover {
    background: linear-gradient(90deg, #d9d9d9, #c0c0c0); /* Ters gradient */
    transform: translateY(-2px); /* Hafif yükselme */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Daha belirgin gölge */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.banana .banana-info-box {
        width: 350px; /* Mobilde tam genişlik */
        height: 130px; /* Biraz daha kısa */
        padding: 15px;
    }

    .shoppable-video-container.banana .banana-product-image {
        width: 90px;
        height: 90px;
        top: -35px; /* Mobilde daha az kaydırma */
    }

    .shoppable-video-container.banana .banana-product-name {
        font-size: 18px;
    }

    .shoppable-video-container.banana .banana-product-price {
        font-size: 14px;
    }

    .shoppable-video-container.banana .banana-view-product-button {
        font-size: 12px;
        padding: 6px 16px;
    }
}
/* Oz Stil */
.shoppable-video-container.oz .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Hafif yuvarlak kenarlar */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Koyu gölge */
}

.shoppable-video-container.oz .oz-info-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    max-width: 310px;
    background: linear-gradient(135deg, #3c2f2f 0%, #5c4033 100%); /* Koyu kahverengi gradient */
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 15px;
    pointer-events: auto;
    z-index: 3;
    border: 1px solid #ff8c00; /* Turuncu çerçeve */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 0 5px rgba(255, 140, 0, 0.1); /* Gölge ve iç parlama */
}

.shoppable-video-container.oz .oz-product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
}

.shoppable-video-container.oz .oz-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Kare şekil */
    border: 2px solid #ff8c00; /* Turuncu çerçeve */
    box-shadow: 0 0 5px rgba(255, 140, 0, 0.3); /* Hafif turuncu parlama */
    transition: transform 0.3s ease;
}

.shoppable-video-container.oz .oz-product-image img:hover {
    transform: scale(1.05); /* Hafif büyüme */
}

.shoppable-video-container.oz .oz-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ürün ismi üstte, fiyat ortada, buton altta */
    color: #ffffff; /* Beyaz metin */
}

.shoppable-video-container.oz .oz-product-name {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ff8c00; /* Turuncu */
    font-family: 'Courier New', Courier, monospace; /* Rustik ve mekanik hissi için monospaced font */
    order: 1; /* Üstte */
}

.shoppable-video-container.oz .oz-product-price {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
    color: #d9d9d9; /* Açık gri */
    order: 2; /* Ortada */
}

.shoppable-video-container.oz .oz-view-product-button {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(90deg, #ff8c00, #ffa500); /* Turuncudan açık turuncuya gradient */
    color: #3c2f2f; /* Koyu kahverengi metin */
    text-decoration: none;
    border-radius: 6px; /* Hafif yuvarlak buton */
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 4px rgba(255, 140, 0, 0.3); /* Hafif turuncu gölge */
    order: 3; /* Altta */
}

.shoppable-video-container.oz .oz-view-product-button:hover {
    background: linear-gradient(90deg, #ffa500, #ff8c00); /* Ters gradient */
    transform: translateY(-2px); /* Hafif yükselme */
    box-shadow: 0 4px 6px rgba(255, 140, 0, 0.4); /* Daha belirgin gölge */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.oz .oz-info-box {
        width: calc(100% - 30px);
        max-width: 290px;
        padding: 12px;
    }

    .shoppable-video-container.oz .oz-product-image {
        width: 70px;
        height: 70px;
    }

    .shoppable-video-container.oz .oz-product-name {
        font-size: 18px;
    }

    .shoppable-video-container.oz .oz-product-price {
        font-size: 14px;
    }

    .shoppable-video-container.oz .oz-view-product-button {
        font-size: 12px;
        padding: 6px 16px;
    }
}
/* Eylül Stil */
.shoppable-video-container.eylul .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 0; /* Keskin hatlar */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); /* Dramatik gölge */
}

.shoppable-video-container.eylul .eylul-info-box {
    position: absolute;
    bottom: 0; /* Alttan tam kaplama */
    left: 0;
    width: 350px; /* Tam genişlik */
    height: 160px; /* Daha büyük kutu */
    background: linear-gradient(135deg, #2b0d0d 0%, #4b1c1c 100%); /* Koyu kırmızı gradient */
    border-radius: 0; /* Keskin köşeler */
    padding: 20px;
    display: flex;
    gap: 20px;
    pointer-events: auto;
    z-index: 3;
    border-top: 3px solid #d4af37; /* Kalın altın üst çizgi */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); /* Parlak altın gölge */
}

.shoppable-video-container.eylul .eylul-product-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    position: relative;
    top: -50px; /* Resmi yukarı taşır */
}

.shoppable-video-container.eylul .eylul-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Kare şekil */
    border: 3px solid #d4af37; /* Kalın altın çerçeve */
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6), 0 0 20px rgba(212, 175, 55, 0.3); /* Çift katmanlı altın parlama */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shoppable-video-container.eylul .eylul-product-image img:hover {
    transform: scale(1.1); /* Daha belirgin büyüme */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 0 25px rgba(212, 175, 55, 0.5); /* Daha yoğun parlama */
}

.shoppable-video-container.eylul .eylul-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ürün ismi üstte, fiyat ortada, buton altta */
    color: #ffffff; /* Beyaz metin */
}

.shoppable-video-container.eylul .eylul-product-name {
    margin: 0 0 5px;
    font-size: 24px; /* Daha büyük ve iddialı */
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #d4af37; /* Altın */
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5); /* Hafif altın parlama */
    font-family: 'Times New Roman', Times, serif; /* Klasik ve dramatik font */
    order: 1; /* Üstte */
}

.shoppable-video-container.eylul .eylul-product-price {
    margin: 0 0 8px;
    font-size: 18px; /* Daha büyük ve çarpıcı */
    font-weight: 600;
    color: #e0e0e0; /* Açık gri */
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.3); /* Hafif gölge */
    order: 2; /* Ortada */
}

.shoppable-video-container.eylul .eylul-view-product-button {
    display: inline-block;
    padding: 10px 22px; /* Daha geniş ve kalın */
    background: linear-gradient(90deg, #d4af37, #f5c670); /* Altından parlak turuncuya gradient */
    color: #2b0d0d; /* Koyu kırmızı metin */
    text-decoration: none;
    border-radius: 0; /* Keskin köşeler */
    font-size: 16px; /* Daha büyük font */
    font-weight: 700;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.4); /* Güçlü gölge */
    order: 3; /* Altta */
}

.shoppable-video-container.eylul .eylul-view-product-button:hover {
    background: linear-gradient(90deg, #f5c670, #d4af37); /* Ters gradient */
    transform: translateY(-3px); /* Daha belirgin yükselme */
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.6); /* Daha dramatik gölge */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.eylul .eylul-info-box {
        width: calc(100% - 30px);
        max-width: 290px;
        height: 150px;
        padding: 15px;
    }

    .shoppable-video-container.eylul .eylul-product-image {
        width: 90px;
        height: 90px;
        top: -45px; /* Mobilde biraz daha az kaydırma */
    }

    .shoppable-video-container.eylul .eylul-product-name {
        font-size: 22px;
    }

    .shoppable-video-container.eylul .eylul-product-price {
        font-size: 16px;
    }

    .shoppable-video-container.eylul .eylul-view-product-button {
        font-size: 14px;
        padding: 8px 18px;
    }
}
/* Water Stil */
.shoppable-video-container.water .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 20px; /* Yuvarlak kenarlar (Hakan gibi) */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Hafif gölge */
}

.shoppable-video-container.water .water-info-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    max-width: 310px;
    background: linear-gradient(135deg, #e6f0fa 0%, #f0f8ff 100%); /* Açık mavi-beyaz gradient */
    border-radius: 15px; /* Yuvarlak kenarlar (Hakan gibi) */
    padding: 15px;
    display: flex;
    gap: 15px;
    pointer-events: auto;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

.shoppable-video-container.water .water-product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
}

.shoppable-video-container.water .water-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Kare şekil */
    border: 2px solid #4682b4; /* Çelik mavisi çerçeve */
    transition: transform 0.3s ease;
}

.shoppable-video-container.water .water-product-image img:hover {
    transform: scale(1.05); /* Hafif büyüme (Hakan gibi) */
}

.shoppable-video-container.water .water-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Ürün ismi ve fiyatı dikeyde ortalar */
    color: #333333; /* Koyu gri metin */
}

.shoppable-video-container.water .water-product-name {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none; /* Varsayılan alt çizgi kaldırılır */
    color: #4682b4; /* Çelik mavisi */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer; /* Tıklanabilir olduğunu belirtir */
    transition: color 0.3s ease;
}

.shoppable-video-container.water .water-product-name:hover {
    color: #1e90ff; /* Daha parlak mavi (hover efekti) */
    text-decoration: underline; /* Hover’da alt çizgi */
}

.shoppable-video-container.water .water-product-price {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #555555; /* Orta gri (Hakan gibi) */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.water .water-info-box {
        width: calc(100% - 30px);
        max-width: 290px;
        padding: 12px;
    }

    .shoppable-video-container.water .water-product-image {
        width: 70px;
        height: 70px;
    }

    .shoppable-video-container.water .water-product-name {
        font-size: 16px;
    }

    .shoppable-video-container.water .water-product-price {
        font-size: 14px;
    }
}

/* Minimal Stil */
.shoppable-video-container.minimal .minimal-overlay {
    position: absolute;
    bottom: 44px; /* Buton (24px) + 5px boşluk + 10px taban */
    left: 10px;
    width: calc(100% - 20px);
    max-width: 330px;
    background: rgba(95, 83, 83, 0);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    gap: 10px;
    pointer-events: none;
    overflow: hidden;
}

.shoppable-video-container.minimal .minimal-image-box {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.shoppable-video-container.minimal .minimal-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.shoppable-video-container.minimal .minimal-info-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000000;
    pointer-events: auto;
    max-width: 230px;
}

.shoppable-video-container.minimal .minimal-product-name {
    margin: 0 0 5px;
    font-size: 16px;
    color: #000000;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shoppable-video-container.minimal .minimal-product-price {
    margin: 0 0 5px;
    font-size: 14px;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shoppable-video-container.minimal .minimal-rating {
    margin: 0;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shoppable-video-container.minimal .stars {
    color: #ffcc00; /* Yıldız rengi altın sarısı */
    font-size: 12px;
}

.shoppable-video-container.minimal .comment-count {
    color: #000000;
    font-size: 12px;
    margin-left: 5px;
}

.shoppable-video-container.minimal .minimal-view-product-button {
    position: absolute;
    bottom: 10px; /* Video’nun altından 10px yukarıda */
    left: 10px;
    width: calc(100% - 20px); /* Overlay ile aynı genişlik */
    max-width: 330px; /* Overlay ile uyumlu maksimum genişlik */
    padding: 8px;
    background: #e7b1c1;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    transition: background-color 0.3s ease;
    pointer-events: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shoppable-video-container.minimal .minimal-view-product-button:hover {
    background: #005d82;
}
/* Glass Stil */
.shoppable-video-container.glass .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 15px; /* Yuvarlak kenarlar */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

.shoppable-video-container.glass .glass-info-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    max-width: 310px;
    background: rgba(255, 255, 255, 0.15); /* Şeffaf beyaz (glassmorphism) */
    backdrop-filter: blur(10px); /* Cam bulanıklık efekti */
    -webkit-backdrop-filter: blur(10px); /* Safari desteği */
    border-radius: 12px;
    padding: 15px;
    display: flex;
    gap: 15px;
    pointer-events: auto;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Hafif beyaz çerçeve */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Parlak gölge */
}

.shoppable-video-container.glass .glass-product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
}

.shoppable-video-container.glass .glass-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Kare şekil */
    border: 2px solid #00b7ff; /* Parlak mavi çerçeve */
    box-shadow: 0 0 5px rgba(0, 183, 255, 0.5); /* Hafif mavi parlama */
    transition: transform 0.3s ease;
}

.shoppable-video-container.glass .glass-product-image img:hover {
    transform: scale(1.05); /* Hafif büyüme */
}

.shoppable-video-container.glass .glass-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Ürün ismi ve fiyatı dikeyde ortalar */
    color: #000000; /* Beyaz metin */
}

.shoppable-video-container.glass .glass-product-name {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000000; /* Beyaz */
}

.shoppable-video-container.glass .glass-product-price {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
    color: #000000; /* Hafif mavi tonlu beyaz */
}

.shoppable-video-container.glass .glass-view-product-button {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(90deg, #00b7ff, #40c4ff); /* Parlak maviden açık maviye gradient */
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 4px rgba(0, 183, 255, 0.3); /* Hafif mavi gölge */
}

.shoppable-video-container.glass .glass-view-product-button:hover {
    background: linear-gradient(90deg, #40c4ff, #00b7ff); /* Ters gradient */
    transform: translateY(-2px); /* Hafif yükselme */
    box-shadow: 0 4px 8px rgba(0, 183, 255, 0.5); /* Daha belirgin gölge */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.glass .glass-info-box {
        width: calc(100% - 30px);
        max-width: 290px;
        padding: 12px;
    }

    .shoppable-video-container.glass .glass-product-image {
        width: 70px;
        height: 70px;
    }

    .shoppable-video-container.glass .glass-product-name {
        font-size: 16px;
    }

    .shoppable-video-container.glass .glass-product-price {
        font-size: 14px;
    }

    .shoppable-video-container.glass .glass-view-product-button {
        font-size: 12px;
        padding: 6px 16px;
    }
}
/* Futurist Stil */
.shoppable-video-container.futurist .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Hafif yuvarlak kenarlar */
}

.shoppable-video-container.futurist .futurist-info-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    max-width: 310px;
    background: #ffffff; /* Beyaz arka plan */
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 15px;
    pointer-events: auto;
    z-index: 3;
    border: 1px solid #d0d0d0; /* Açık gri çerçeve */
}

.shoppable-video-container.futurist .futurist-product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
}

.shoppable-video-container.futurist .futurist-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Kare şekil */
    border: 2px solid #4682b4; /* Hafif mavi çerçeve */
}

.shoppable-video-container.futurist .futurist-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ürün ismi üstte, fiyat ortada, buton altta */
    color: #333333; /* Koyu gri metin */
}

.shoppable-video-container.futurist .futurist-product-name {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #4682b4; /* Hafif mavi */
}

.shoppable-video-container.futurist .futurist-product-price {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
    color: #666666; /* Orta gri */
}

.shoppable-video-container.futurist .futurist-view-product-button {
    display: inline-block;
    padding: 8px 18px;
    background: #4682b4; /* Hafif mavi */
    color: #ffffff; /* Beyaz metin */
    text-decoration: none;
    border-radius: 6px; /* Hafif yuvarlak buton */
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
}

.shoppable-video-container.futurist .futurist-view-product-button:hover {
    background: #5a9bd4; /* Biraz daha açık mavi */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.futurist .futurist-info-box {
        width: calc(100% - 30px);
        max-width: 290px;
        padding: 12px;
    }

    .shoppable-video-container.futurist .futurist-product-image {
        width: 70px;
        height: 70px;
    }

    .shoppable-video-container.futurist .futurist-product-name {
        font-size: 16px;
    }

    .shoppable-video-container.futurist .futurist-product-price {
        font-size: 14px;
    }

    .shoppable-video-container.futurist .futurist-view-product-button {
        font-size: 12px;
        padding: 6px 16px;
    }
}
/* Game Stil */
.shoppable-video-container.game .shoppable-video-wrapper {
    width: 350px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Hafif yuvarlak kenarlar */
}

.shoppable-video-container.game .game-info-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    max-width: 310px;
    background: #333333; /* Koyu gri, sade ve nötr */
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 15px;
    pointer-events: auto;
    z-index: 3;
}

.shoppable-video-container.game .game-product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
}

.shoppable-video-container.game .game-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Kare şekil */
    border: 2px solid #b0b0b0; /* Açık gri çerçeve */
}

.shoppable-video-container.game .game-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ürün ismi üstte, fiyat ortada, buton altta */
    color: #fff; /* Beyaz metin */
}

.shoppable-video-container.game .game-product-name {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #b0b0b0; /* Açık gri */
}

.shoppable-video-container.game .game-product-price {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
    color: #d0d0d0; /* Daha açık gri */
}

.shoppable-video-container.game .game-view-product-button {
    display: inline-block;
    padding: 8px 18px;
    background: #4682b4; /* Açık mavi, sade bir renk */
    color: #fff; /* Beyaz metin */
    text-decoration: none;
    border-radius: 6px; /* Hafif yuvarlak buton */
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
}

.shoppable-video-container.game .game-view-product-button:hover {
    background: #5a9bd4; /* Biraz daha açık mavi */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .shoppable-video-container.game .game-info-box {
        width: calc(100% - 30px);
        max-width: 290px;
        padding: 12px;
    }

    .shoppable-video-container.game .game-product-image {
        width: 70px;
        height: 70px;
    }

    .shoppable-video-container.game .game-product-name {
        font-size: 16px;
    }

    .shoppable-video-container.game .game-product-price {
        font-size: 14px;
    }

    .shoppable-video-container.game .game-view-product-button {
        font-size: 12px;
        padding: 6px 16px;
    }
}

