/**
 * EcoFlow Custom Cart Styles
 */
.cart-top-sec,
.cart-inner-sec,
.cart-bottom-sec {
    background-color: #f8f8f8;
}

.ecoflow-custom-cart {
    max-width: 1200px;
    margin: 0 auto;
}

.cart-empty.woocommerce-info {
    display: none !important;
}

/* ============================================
   DESKTOP VIEW
   ============================================ */
.cart-desktop {
    display: block;
}

.ecoflow-complete-cart-wrapper {
    display: flex;
    gap: 24px;
    max-width: 1240px;
    align-items: flex-start;
}

/* Var olan bu kuralı bul ve overflow satırını kaldır/değiştir */
.ecoflow-custom-cart {
    display: flex;
    flex-direction: column;
    min-width: 65%;
    max-width: 65%;
    min-height: 100%;
    margin: 0 auto;
    background: #fff;
    overflow: hidden; /* JS height match'iyle iç scroll için */
    border-radius: 8px;
}

/* Sol kolon içinde cart items alanı: kalan boşluğu kaplar ve scroll'lanır */
.ecoflow-custom-cart .cart-desktop {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
}

.ecoflow-custom-cart .cart-desktop::-webkit-scrollbar {
    width: 6px;
}

.ecoflow-custom-cart .cart-desktop::-webkit-scrollbar-thumb {
    background: #d8dae3;
    border-radius: 3px;
}

.ecoflow-custom-cart .cart-desktop::-webkit-scrollbar-thumb:hover {
    background: #bfc2cf;
}

/* Mobile/tablet'te (≤1024) JS height uygulanmaz, scroll iç değil; sayfa scroll'u */
@media (max-width: 1024px) {
    .ecoflow-custom-cart {
        height: auto !important;
        overflow: visible;
    }

    .ecoflow-custom-cart .cart-desktop {
        flex: 0 0 auto;
        min-height: 0;
        overflow: visible;
    }
}

.ecoflow-cart-right-column {
    min-width: auto;
}

.cart-mobile {
    display: none;
}

.cart-item {
    display: flex;
    /* grid-template-columns: 40px 120px 1fr 180px 150px; */
    gap: 20px;
    align-items: center;
    padding: 30px 20px 40px;
    border-bottom: 1px solid #ededed;
    background: #fff;
    transition: background 0.2s;
    justify-content: space-between;
}

.cart-item:hover {
    background: #fff;
}

/* Checkbox */
.item-checkbox input[type="checkbox"] {
    padding: 0;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid #c0c1c2;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
}

/* Checked - Mavi Arka Plan */
.item-checkbox input[type="checkbox"]:checked {
    background: #2164ff;
    border-color: #2164ff;
}

/* Tik Ä°ÅŸareti - Beyaz */
.item-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 3px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Hover Effect */
.item-checkbox input[type="checkbox"]:hover {
    border-color: #2164ff;
}

/* Unchecked Item - Soluk GÃ¶ster */
.cart-item.item-excluded {
    opacity: 0.5;
    background: #f9fafb;
}

.cart-item.item-excluded .item-price {
    text-decoration: line-through;
}

/* Product Image */
.item-image {
    flex: 0 0 88px;
    /* height: 120px; */
    display: inline-flex;
    max-width: 100px;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Info */
.item-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-name {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.item-meta {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Care Badge */
.care-badge {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f0f9ff 0%, #2164ff14 100%);
    border: 1.5px solid #2164ff;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: #1f2937;
    justify-content: space-between;
}

.care-badge i {
    color: #2164ff;
    font-size: 14px;
}

.care-badge .care-price {
    font-weight: 600;
    color: #000;
}

.care-badge .care-remove {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
    font-size: 16px;
    transition: color 0.2s;
}

.care-badge .care-remove:hover {
    color: #ef4444;
}

/* Care Selection */
.care-selection {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    width: 100%;
}

.care-option {
    position: relative;
    /* âœ… SADECE BU SATIRI EKLE */
    display: flex;
    max-width: 33%;
    width: 33%;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.care-option:hover {
    border-color: #2164ff;
    background: #f0f9ff;
}

.care-option i {
    color: #2164ff;
    font-size: 12px;
}

/* Info Icon - SaÄŸ Ãœst KÃ¶ÅŸe */
.care-info-icon {
    position: absolute;
    top: -10px;
    right: 3px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 50%;
    color: #000;
    font-size: 10px;
    text-decoration: none;
    z-index: 10;
    transition: all 0.2s;
}

.care-info-icon:hover {
    background: #f8f8f8;
}

.care-info-icon i {
    color: #000 !important;
    font-size: 16px !important;
}

/* Quantity Controls */
.item-quantity {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    max-width: 120px;
}

.item-quantity.item-quantity-gift {
    min-width: 125px;
}

.qty-manage {
    display: flex;
    align-items: center;
    gap: 8px;
    border: solid .8px #ededed;
    border-radius: 3.3px;
    padding: 0;
    max-width: 120px;
}

.qty-btn {
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border: none;
    border-radius: 0;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
    flex-shrink: 0;
}

.qty-btn svg {
    width: 33px;
    height: 33px;
    display: block;
    color: currentColor;
}

.qty-btn:hover,
.qty-btn:focus {
    background: #f8f8f8;
    color: #374151;
    outline: none;
    opacity: .5;
}

.qty-btn:hover svg,
.qty-btn:focus svg {
    opacity: .5;
}

.item-quantity input {
    width: 16px;
    height: 16px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    color: #1f2937;
}

.item-quantity input::-webkit-inner-spin-button,
.item-quantity input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5 !important;
}

.stock-error {
    display: block;
    position: absolute;
    top: 100px;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 600;
}

/* Price & Actions */
.item-price-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.item-price {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}

.item-remove {
    font-size: 14px;
    color: #6b7280;
    text-decoration: underline !important;
    transition: color 0.2s;
}

.item-remove:hover {
    color: #000;
    text-decoration: none;
}


/* Loading State */
.cart-item.loading {
    opacity: 0.5;
    pointer-events: none;
}

.cart-item.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================================
   MOBILE VIEW (< 768px)
   ============================================ */
@media (min-width:1170px) {
    .item-info {
        flex: 0 0 300px;
    }

}

@media (max-width: 767px) {

    .cart-desktop,
    .ecoflow-complete-cart-wrapper .ecoflow-cart-right-column .ecoflow-cart-info-section {
        display: none;
    }

    .ecoflow-complete-cart-wrapper .ecoflow-cart-right-column .summary-buttons {
        flex-direction: row-reverse;
    }

    .cart-mobile {
        display: block;
        padding: 50px 18px;
    }

    #recommended-sec {
        background: #fff;
    }

    .recommended-product-card .card-add-to-cart {
        box-shadow: 0 5px 7px #2164ff38;
    }

    .ecoflow-complete-cart-wrapper .ecoflow-cart-right-colum .summary-row n {
        padding-bottom: 16px;
    }

    .ecoflow-complete-cart-wrapper .cart-mobile h2 {
        font-size: 20px;
        border-bottom: 1px solid #ededed;
        font-weight: 700;
        margin-bottom: 0;
        padding-bottom: 20px;
        color: #1f2937;
        display: block;
    }

    /* Info Box */
    .cart-info-box {
        background: #f0f9ff;
        border: 1px solid #bfdbfe;
        border-radius: 8px;
        padding: 16px;
        margin-bottom: 20px;
    }

    .cart-info-box p {
        font-size: 13px;
        color: #374151;
        margin: 0 0 8px 0;
        line-height: 1.5;
    }

    .cart-info-box a {
        font-size: 13px;
        color: #00D4AA;
        font-weight: 600;
        text-decoration: none;
    }

    /* Cart Item Mobile */
    .cart-item-mobile {
        background: #fff;
        border-radius: 0;
        padding: 16px 0 40px;
        margin: 0;
        border-top: 0 solid #ededed;
        border-bottom: 1px solid #ededed;
        box-shadow: none;
    }

    .item-content {
        display: flex;
        gap: 16px;
        margin-bottom: 12px;
    }

    .cart-item-mobile .item-image {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .cart-item-mobile .item-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .item-details {
        flex: 1;
    }

    .item-details h3 {
        font-size: 15px;
        font-weight: 600;
        color: #1f2937;
        margin: 0 0 8px 0;
        line-height: 1.3;
    }

    .item-details .item-price {
        font-size: 16px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 8px;
    }

    /* KaldÄ±r ve Quantity Yan Yana */
    .item-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 12px;
    }

    .item-actions .item-remove {
        margin: 0;
    }

    .item-actions .item-quantity {
        margin: 0;
    }

    .item-details .item-remove {
        font-size: 13px;
        color: #6b7280;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 12px;
    }

    .item-details .item-quantity {
        width: 130px;
    }

    .item-details .qty-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .item-details .item-quantity input {
        width: 50px;
        height: 32px;
        font-size: 14px;
    }

    .cart-item-mobile .care-badge {
        display: flex;
        max-width: 100%;
        margin-bottom: 10px;
    }

    /* Care Badge Mobile */
    .care-badge-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        border: 1.5px solid #00D4AA;
        border-radius: 8px;
        padding: 10px 12px;
        margin-bottom: 12px;
        font-size: 13px;
    }

    .care-badge-mobile i {
        color: #00D4AA;
        font-size: 14px;
    }

    .care-badge-mobile .care-price {
        margin-left: auto;
        font-weight: 600;
        color: #00D4AA;
    }

    .care-badge-mobile .care-remove {
        background: none;
        border: none;
        color: #6b7280;
        font-size: 20px;
        cursor: pointer;
        padding: 0 0 0 8px;
    }

    /* Care Selection Mobile */
    .care-selection-mobile {
        display: flex;
        flex-direction: row;
        gap: 8px;
        margin-top: 30px;
        justify-content: space-between;
    }

    .care-selection-mobile .care-option {
        padding: 10px 10px;
        background: #fff;
        border: 1.5px solid #e5e7eb;
        border-radius: 8px;
        font-size: 0.6rem;
        text-align: center;
        cursor: pointer;
        min-width: 32%;
        display: inline-block;
        transition: all 0.2s;
        align-content: center;
    }

    .care-selection-mobile .care-option:hover {
        border-color: #00D4AA;
        background: #f0f9ff;
        color: #00D4AA;
    }

    .ecoflow-complete-cart-wrapper .ecoflow-cart-right-column .ecoflow-cart-summary .summary-total {
        justify-content: space-between;
    }

    .ecoflow-complete-cart-wrapper .ecoflow-cart-right-column .ecoflow-cart-summary .btn-continue {
        color: #757575;
        border: 1px solid #c0c1c2;
        width: 410px;
    }
}

/* Empty Cart */
.ecoflow-cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.ecoflow-cart-empty p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 20px;
}

.ecoflow-cart-empty .button {
    background: #00D4AA;
    color: #fff;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: background 0.2s;
}

.ecoflow-cart-empty .button:hover {
    background: #00bd96;
}

/* Total Box */
.ecoflow-cart-total-box {
    display: flex;
    align-items: center;
    padding: 2px 0 20px;
}

.ecoflow-cart-total-box .total-label {
    font-weight: 600;
    font-size: 20px;
}

.ecoflow-cart-total-box .total-value {
    font-weight: 700;
    font-size: 20px;
    padding-left: 15px;
}

/* ============================================
   SUBTOTAL BOX
   ============================================ */

.ecoflow-cart-subtotal-box {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #EBE9E9;
    padding-bottom: 8px;
}

.subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
}

.subtotal-row .row-label {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

.subtotal-row .row-value {
    font-size: 15px;
    color: #1f2937;
    font-weight: 600;
}

/* Ãœcretsiz Kargo Vurgusu */
.subtotal-row .shipping-value {
    color: #000;
}

/* Mobil */
@media (max-width: 768px) {

    .subtotal-row .row-label,
    .subtotal-row .row-value {
        font-size: 14px;
    }
}

/* ============================================
   RECOMMENDED PRODUCTS
   ============================================ */

.ecoflow-recommended-products {
    margin: 40px 0;
}

.recommended-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

/* ── Slider Layout (Desktop + Mobile) ── */
.recommended-slider-wrapper {
    position: relative;
}

.recommended-slider-track {
    overflow: hidden;
    width: 100%;
}

.recommended-slider-inner {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Ok Butonları — track dışında absolute */
.rec-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
    z-index: 2;
}

.rec-arrow-prev {
    left: -52px;
}

.rec-arrow-next {
    right: -52px;
}

.rec-arrow:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

/* Product Card */
.recommended-product-card {
    flex: 0 0 calc(25% - 15px);
    padding: 0 0 40px;
    border-radius: 8px;
    position: relative;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: all .3s;
    min-height: 420px;
    justify-content: space-between;
}

.recommended-product-card:hover {
    box-shadow: rgba(0, 0, 0, 0.07) 0px 22px 24px -20px;
}

.card-image {
    margin-bottom: 16px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-title {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 18px 0;
    line-height: 1.4;
    min-height: 42px;
    text-align: center;
    padding: 0 20px;
}

.card-title a {
    color: inherit;
    text-decoration: none;
}

.card-title a:hover {
    color: #000;
}

.card-price {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    padding: 0 20px;
    text-align: center;
}

.card-price .price {
    font-weight: 600;
    color: #1f2937;
}

.card-price del {
    color: #9ca3af;
    margin-left: 8px;
}

/* Add to Cart Button */
.card-add-to-cart {
    width: 118px;
    height: 30px;
    background: #0066FF;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 7px 15px;
    font-size: 12px;
    line-height: 1;
    align-self: center;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 16px;
}

.card-add-to-cart:hover,
.card-add-to-cart:focus {
    background: #2164ffcc;
    outline: none;
    color: #fff;
}

.card-add-to-cart.adding {
    opacity: 0.6;
    pointer-events: none;
}

.card-sold-out {
    width: 100%;
    background: #9ca3af;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: not-allowed;
}

/* ============================================
   MOBILE (< 768px)
   ============================================ */
@media (max-width: 767px) {

    .rec-arrow {
        display: none;
    }

    .recommended-slider-track {
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        /* Firefox */
        -webkit-overflow-scrolling: touch;
    }

    .recommended-slider-track::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .recommended-slider-inner {
        transform: none !important;
        gap: 16px;
        padding-bottom: 16px;
        scroll-snap-type: x mandatory;
    }

    .recommended-product-card {
        flex: 0 0 215px;
        min-width: 215px;
        max-width: 215px;
        background-color: #f8f8f8;
        scroll-snap-align: start;
    }

    .recommended-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .card-image {
        height: 160px;
    }

    .recommended-product-card {
        display: flex;
        flex-direction: column;
        padding: 20px 10px;
    }

    .card-info {
        min-height: 140px;
        justify-content: space-between;
        display: flex;
        flex-direction: column;
    }

    /* Sıralama: Title -> Price -> Image -> Button */
    .recommended-product-card .card-title {
        order: 1;
    }

    .recommended-product-card .card-price {
        order: 2;
    }

    .recommended-product-card .card-image {
        order: 3;
    }

    .recommended-product-card .card-add-to-cart,
    .recommended-product-card .card-sold-out {
        order: 4;
    }
}

@media (max-width: 1024px) {
    .recommended-product-card .card-image {
        height: max-content;
    }
}

/* ========================================
   BOÅž SEPET TASARIMI
   ======================================== */

.ecoflow-cart-empty-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 60px 20px;
    background: #ffffff;
}

.empty-box-content {
    width: 355px;
    margin: -20px auto auto;
    max-width: 100%;
    background-image: linear-gradient(to bottom, #f5f5f8, #fff0 47%);
    border-radius: 50%;
}

.ecoflow-empty-cart-content {
    text-align: center;
    max-width: 400px;
}

.ecoflow-empty-cart-icon {
    /* margin-bottom: 30px; */
    /* opacity: 0.6; */
}

.ecoflow-empty-cart-message {
    font-size: 14px;
    padding-top: 70px;
    color: #757575;
    margin-bottom: 32px;
    /* font-weight: 400; */
    /* font-family: 'Manrope', sans-serif; */
}

.ecoflow-continue-shopping-btn {
    display: inline-block;
    padding: 10px 25px;
    /* margin-top: 24px; */
    background: #ffffff;
    color: #666;
    border: solid 1px #c0c1c2;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.ecoflow-continue-shopping-btn:hover {
    background: transparent;
    border-color: #03060b;
    color: #03060b;
}

/* ========================================
   COMPLETE CART - 2 KOLONLU YAPI (SCOPED)
   ======================================== */
/* ================== SAÃ„Å¾ KOLON ================== */

.ecoflow-complete-cart-wrapper .ecoflow-cart-right-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: fit-content;
}

.ecoflow-complete-cart-wrapper .ecoflow-cart-summary {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
}

.ecoflow-complete-cart-wrapper .ecoflow-cart-summary h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #111827;
}

/* Ara Toplam + Kargo SatÃ„Â±rlarÃ„Â± */
.ecoflow-complete-cart-wrapper .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    font-size: 14px;
    color: #757575;
    font-weight: 500;
}

.ecoflow-complete-cart-wrapper .summary-row.second-sm-line {
    padding-bottom: 20px;
}

.ecoflow-complete-cart-wrapper .summary-row:last-of-type {
    margin-bottom: 16px;
}

.ecoflow-complete-cart-wrapper .summary-row span:last-child {
    font-weight: 600;
    color: #111827;
}

/* Toplam */
.ecoflow-complete-cart-wrapper .summary-total {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    padding: 22px 0;
    border-top: 1px solid #ebe9e9;
    margin-bottom: 24px;
}

.ecoflow-complete-cart-wrapper .summary-total span:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.ecoflow-complete-cart-wrapper .summary-total span:last-child {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

/* Butonlar */
.ecoflow-complete-cart-wrapper .summary-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ecoflow-complete-cart-wrapper .btn-checkout,
.ecoflow-complete-cart-wrapper .btn-continue {
    display: block;
    width: 100%;
    height: 56px;
    padding: 14px 24px;
    align-content: center;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.ecoflow-complete-cart-wrapper .btn-checkout {
    background: #2164ff;
    color: #ffffff;
}

.ecoflow-complete-cart-wrapper .btn-checkout:hover {
    background: #2164ffcc;
    color: #ffffff;
}

.ecoflow-complete-cart-wrapper .btn-continue {
    background: #ffffff;
    color: #111827;
    border: none;
}

.ecoflow-complete-cart-wrapper .btn-continue:hover {
    background: transparent;
    border-color: transparent;
    opacity: .6;
}

/* Info Boxes Container */
.ecoflow-complete-cart-wrapper .ecoflow-cart-info-section {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ecoflow-complete-cart-wrapper .info-box {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ecoflow-cart-info-section .info-box img {
    width: 32px;
    height: 32px;
    margin-right: 9px;
}

.ecoflow-complete-cart-wrapper .info-box div {
    flex: 1;
}

.ecoflow-complete-cart-wrapper .info-box strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
    font-family: 'Manrope', sans-serif;
}

.ecoflow-complete-cart-wrapper .info-box p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    font-family: 'Manrope', sans-serif;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .ecoflow-complete-cart-wrapper {
        gap: 24px;
        flex-direction: column-reverse;
    }

    .ecoflow-custom-cart {
        width: 100%;
        max-width: 100%;
    }

    .cart-mobile h2 {
        display: none;
    }

    .care-selection-mobile {
        flex-direction: row;
    }

    .ecoflow-complete-cart-wrapper .ecoflow-cart-right-column {
        position: static;
        order: -1;
        max-width: 100%;
        /* Mobilde Ã¶nce Ã¶zet gÃ¶ster */
    }

    .ecoflow-complete-cart-wrapper .ecoflow-cart-summary {
        padding: 20px;
    }

    .ecoflow-complete-cart-wrapper .ecoflow-cart-info-section {
        padding: 32px 20px;
        flex-direction: row;
    }

    .item-info {
        max-width: 300px;
        flex: 0 0 300px;
    }

    .ecoflow-cart-info-section {
        display: flex;
        flex-wrap: wrap;
    }

    .ecoflow-cart-info-section .info-box {
        width: 48%;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .ecoflow-complete-cart-wrapper .ecoflow-cart-summary h3 {
        font-size: 18px;
    }

    .ecoflow-complete-cart-wrapper .summary-total span:last-child {
        font-size: 18px;
    }

    .ecoflow-complete-cart-wrapper .btn-checkout,
    .ecoflow-complete-cart-wrapper .btn-continue {
        padding: 12px 20px;
        font-size: 13px;
    }
}
/* ============================================
   CART DESKTOP – SCROLL WHEN OVERFLOW
   ============================================ */
.ecoflow-cart-left-column .cart-desktop {
    max-height: 680px;        /* İhtiyaca göre ayarla */
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-gutter: stable; /* Scrollbar için yer rezerve eder, elementler kaymaz */
}

/* Özel scrollbar stili (opsiyonel, siteyle uyumlu) */
.ecoflow-cart-left-column .cart-desktop::-webkit-scrollbar {
    width: 6px;
}

.ecoflow-cart-left-column .cart-desktop::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 8px 8px 0;
}

.ecoflow-cart-left-column .cart-desktop::-webkit-scrollbar-thumb {
    background: #c0c1c2;
    border-radius: 3px;
}

.ecoflow-cart-left-column .cart-desktop::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}