/* ============================================ */
/* ORGANIC PACKAGES - Cart Discount Badge */
/* ============================================ */
.sepet-item-organic-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.sepet-item-card-organic {
    border-left: 3px solid #10b981;
}

.sepet-item-card-organic .sepet-item-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Organic discount price styling */
.sepet-item-card-organic .sepet-item-price-discounted {
    color: #10b981;
    font-weight: 700;
}

.sepet-item-card-organic .sepet-item-price-original {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 14px;
}

/* Organic discount note in cart total */
.sepet-organic-discount-note {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.sepet-organic-discount-count {
    opacity: 0.8;
    font-size: 11px;
    font-weight: 500;
}

/* ============================================ */
/* Cart Item Styles */
/* ============================================ */
.sepet-item-card-empty {
    text-align: center;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 60px 0;
}

.sepet-contact-form-hidden {
    display: none;
}

.sepet-contact-summary {
    background: #f8f5ff;
    border: 1px solid rgba(120, 68, 228, 0.2);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 24px;
}

.sepet-contact-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
}

.sepet-contact-summary-row:last-child {
    margin-bottom: 0;
}

.sepet-contact-summary-label {
    font-size: 14px;
    font-weight: 500;
    color: #68718c;
}

.sepet-contact-summary-value {
    font-size: 15px;
    font-weight: 600;
    color: #2f1c5c;
}

.sepet-contact-summary-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #7844e4;
    margin-top: 12px;
    text-decoration: none;
}

.sepet-contact-summary-link::after {
    content: '\2197';
    font-size: 13px;
}

.sepet-item-card {
    position: relative;
}

.sepet-item-card-upsell {
    border-left: 4px solid #7844E4;
    background: rgba(120, 68, 228, 0.08);
}

.sepet-item-icon-upsell {
    position: relative;
}

.sepet-item-upsell-tag {
    position: absolute;
    bottom: -4px;
    right: -8px;
    background: #7844E4;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    padding: 2px 6px;
    border-radius: 999px;
    font-weight: 600;
}

.sepet-item-upsell-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #7844E4;
    background: rgba(120, 68, 228, 0.16);
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 6px;
}

/* ============================================ */
/* Discount Badge Styles */
/* ============================================ */
.sepet-item-discount-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
    z-index: 10;
    letter-spacing: 0.3px;
    animation: pulse-cart-discount 2s ease-in-out infinite;
}

.sepet-item-discount-badge svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

@keyframes pulse-cart-discount {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
    }
}

/* ✅ Süper İndirim Badge - Altın/Gold */
.sepet-item-super-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%) !important;
    box-shadow: 0 3px 12px rgba(251, 191, 36, 0.5) !important;
    animation: pulse-super-discount 2s ease-in-out infinite !important;
}

@keyframes pulse-super-discount {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 3px 12px rgba(251, 191, 36, 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 18px rgba(251, 191, 36, 0.7);
    }
}

/* ============================================ */
/* Price Display Styles */
/* ============================================ */
.sepet-item-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    margin-right: 12px;
}

.sepet-item-price-original {
    font-size: 15px;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    text-decoration-color: #ef4444;
}

.sepet-item-price-discounted {
    font-size: 16px;
    font-weight: 700;
    color: #059669 !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sepet-total-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.sepet-total-price-original {
    font-size: 16px;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #ef4444;
}

.sepet-total-amount-discounted {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #059669 !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 !important;
}

/* ============================================ */
/* Total Note Styles */
/* ============================================ */
.sepet-total-note-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
    margin-bottom: 8px;
    width: 100%;
}

.sepet-total-note-discount {
    color: #059669;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.sepet-total-note-service {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.sepet-total-note {
    display: inline-block;
    margin-left: 8px;
    margin-top: 6px;
    font-size: 13px;
    color: #5f6a88;
    background: rgba(120, 68, 228, 0.08);
    border-radius: 8px;
    padding: 6px 10px;
}

/* ✅ Kategori Bazlı İndirim Stilleri */
.sepet-category-discount-note {
    display: block !important;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #16a34a !important;
    /* Yeşil renk - fırsat vurgusu */
}

.sepet-category-discount-count {
    font-size: 11px;
    font-weight: 500;
    color: #059669;
    opacity: 0.9;
}

/* ============================================ */
/* Cart Success Modal Styles */
/* ============================================ */

.full-alert {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.full-alert.show {
    display: flex;
}

.full-alert .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.full-alert .contside {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.full-alert .content {
    text-align: center;
    margin-bottom: 24px;
}

.full-alert .icon {
    font-size: 48px;
    color: #10B981;
    margin-bottom: 16px;
}

.full-alert .title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.full-alert .description {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
}

.full-alert .action {
    display: flex;
    gap: 12px;
}

.full-alert .action .butto {
    flex: 1;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-alert .action .butto-primary {
    background: #7C3AED;
    color: white;
}

.full-alert .action .butto-primary:hover {
    background: #6D28D9;
}

.full-alert .action .butto-outline-success {
    background: white;
    color: #10B981;
    border: 2px solid #10B981;
}

.full-alert .action .butto-outline-success:hover {
    background: #10B981;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .full-alert .contside {
        padding: 24px;
        width: 95%;
    }

    .full-alert .title {
        font-size: 20px;
    }

    .full-alert .description {
        font-size: 14px;
    }

    .full-alert .action {
        flex-direction: column;
    }

    .full-alert .action .butto {
        width: 100%;
    }
}