/* Ana Kapsayıcı - Daha geniş alan */
/* İndirim Rozeti Pulse Animasyonu */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.discount-badge {
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}

/* Fiyat alanının yan yana düzgün durması için */
.product-details__price {
    color: #e74c3c !important; /* Mevcut fiyatı kırmızı yaparak indirim vurgusunu artırır */
    font-size: 1.8em !important;
}



/* İndirim Rozeti Hareketli Efekt */
@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 77, 77, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}

.discount-pill {
    display: inline-block;
    vertical-align: middle;
}

/* Ana fiyatın daha belirgin olması için */
.regular-or-normal-price {
    font-weight: 800 !important;
}

/* İndirim Rozeti Pulse Animasyonu */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.discount-badge {
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}

/* Fiyat alanının yan yana düzgün durması için */
.product-details__price {
    color: #e74c3c !important; /* Mevcut fiyatı kırmızı yaparak indirim vurgusunu artırır */
    font-size: 1.8em !important;
}




















.custom-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #fcfcfc; /* Çok hafif gri, temiz bir alan yaratır */
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
    direction: rtl;
    gap: 10px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 120px;
}

.badge-icon {
    font-size: 18px;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}

/* Küçük Ödeme Logoları Alanı */
.payment-icons-mini {
    display: flex;
    gap: 8px;
    margin-top: 5px;
    width: 100%;
    justify-content: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

.payment-icons-mini img {
    height: 18px; /* Logoları küçük ve zarif tutar */
    opacity: 0.8;
    filter: grayscale(0.2);
}

/* Mobil Ayarı */
@media screen and (max-width: 768px) {
    .custom-trust-badges {
        padding: 12px;
    }
    .badge-text {
        font-size: 11px;
    }
}



















.salla-social-proof {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 25px 0;
    direction: rtl;
    font-family: 'Inter', 'Cairo', sans-serif; /* Modern font desteği */
}





/* Kargo Barı Konteynırı */
.shipping-goal-container {
    background: #ffffff;
    border: 1px solid #eef2f6;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    direction: rtl;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

/* Üst Metin */
.shipping-goal-text {
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: right;
}

.shipping-goal-text b {
    color: #00d278; /* Yeşil vurgu */
    font-weight: 800;
}

/* Bar Arka Planı */
.shipping-bar-bg {
    width: 100%;
    height: 10px;
    background: #f0f2f5;
    border-radius: 20px;
    position: relative;
    overflow: visible; /* İkonun taşması için */
}

/* Dolan Kısım */
.shipping-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d278, #05ff91);
    border-radius: 20px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.1, 0.42, 0.41, 1);
    box-shadow: 0 2px 6px rgba(0, 210, 120, 0.3);
}

/* Bar Üzerindeki Kamyon İkonu */
.shipping-icon-on-bar {
    position: absolute;
    left: -10px; /* Barın ucunda durur */
    top: -22px;
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    animation: truckDrive 2s ease-out;
}

@keyframes truckDrive {
    0% { transform: translateX(50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Mobil Uyumluluk */
@media screen and (max-width: 768px) {
    .shipping-goal-text {
        font-size: 13px;
    }
}























/* Canlı İzleyici Barı - Hap Tasarımı (Pill Design) */
.viewers-badge {
    background: linear-gradient(135deg, #00d278 0%, #00b366 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px; /* Tam yuvarlak köşeler */
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 210, 120, 0.2);
    letter-spacing: 0.3px;
}

/* Flip/Ticker Alanı - Daha belirgin ve büyük */
.ticker-container {
    height: 50px; 
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    padding: 0 5px;
}

.ticker-wrapper {
    transition: transform 0.8s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.ticker-item {
    height: 50px;
    display: flex;
    align-items: center;
    font-size: 16px; 
    font-weight: 700;
    color: #2c3e50;
}

/* Renkler ve Durumlar */
.proof-green { color: #00d278; }
.proof-red { color: #e74c3c; }

/* İkon Halkaları - Daha modern ve büyük */
.icon-circle {
    min-width: 32px; 
    height: 32px;
    border-radius: 10px; /* Modern karemsi köşeler */
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin-left: 12px; 
    font-size: 16px;
    transition: all 0.3s ease;
}

.proof-green .icon-circle { 
    background: rgba(0, 210, 120, 0.1); 
    color: #00d278; 
}
.proof-red .icon-circle { 
    background: rgba(231, 76, 60, 0.1); 
    color: #e74c3c; 
}

/* Sabit Kargo Kutusu - Premium Cam Efekti (Glassmorphism) */
.shipping-static-box {
    background-color: #f8fbff;
    border: 1.5px dashed #d0e7ff; /* Kesikli çizgi kargo kutusu hissi verir */
    color: #34495e;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.shipping-icon {
    font-size: 22px;
    margin-left: 12px;
}

.shipping-static-box b {
    color: #3498db;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Satın Alma Bildirimi (Popup) - Daha büyük ve modern */
.recent-purchase-notify {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    padding: 16px 24px;
    z-index: 10000;
    min-width: 340px;
    direction: rtl;
    border-bottom: 4px solid #00d278; /* Alt çizgi daha modern durur */
    animation: slideInNotify 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.p-name-style {
    color: #00d278;
    font-weight: 800;
    display: inline-block;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notify-content p {
    margin: 0;
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.6;
}

.notify-content small {
    color: #95a5a6;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

.notify-close {
    position: absolute;
    top: 10px;
    left: 12px;
    background: #f5f5f5;
    border: none;
    color: #999;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
}

/* Animasyonlar */
@keyframes slideInNotify {
    from { transform: translateX(-120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes blink { 
    0%, 100% { transform: scale(1); opacity: 1; } 
    50% { transform: scale(1.2); opacity: 0.5; } 
}

.dot-live {
    height: 10px; width: 10px; 
    background-color: #fff;
    border-radius: 50%; 
    margin-left: 12px;
    animation: blink 1.5s infinite;
    box-shadow: 0 0 8px #fff;
}

/* Mobil Optimizasyonu */
@media screen and (max-width: 768px) {
    .recent-purchase-notify {
        bottom: 95px;
        left: 10px;
        right: 10px;
        min-width: unset;
        padding: 12px 16px;
    }
    
    .ticker-item, .shipping-static-box {
        font-size: 14px;
    }
}