.cart-page-wrapper {
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333333;
}

.cart-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Sol Bölüm - Seçili Paketler */
.selected-packages {
    flex: 1;
    max-width: 650px;
}

.packages-header {
    margin-bottom: 10px;
}

.packages-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #181818;
    margin: 0 0 8px 0;
    font-family: 'Inter';
}

.packages-description {
    font-size: 16px;
    color: #7C7C7C;
    margin: 0;
    line-height: 24px;
    font-weight: 400;
}

.packages-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.package-item {
    display: flex;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid #eeeeee;
    gap: 20px;
}

.package-item:last-child {
    border-bottom: none;
}

.package-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.package-name {
    font-size: 16px;
    font-weight: 600;
    color: #181818;
    margin: 0;
    line-height: 24px;
    font-family: 'Inter';
}

.package-author {
    font-size: 15px;
    color: #888888;
    margin: 0;
    font-weight: 400;
}

.package-remove {
    background: none!important;
    border: none !important;
    color: #693EFB!important;
    font-size: 10px!important;
    line-height: 16px!important;
    font-family: 'Inter'!important;
    cursor: pointer;
    padding: 0!important;
    text-decoration: underline!important;
    font-weight: 400!important;
    align-self: flex-start!important;
    margin-top: 4px!important;
}

.price-text-small {
    font-size: 14px;
    font-weight: 500;
}


.package-price {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-left: 20px;
    display: grid;
}

/* Sağ Bölüm - Sipariş Özeti */
.order-summary-section {
    width: 400px;
    flex-shrink: 0;
}

.summary-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #F1F3F4;
}

.summary-title {
    font-size: 18px;
    font-weight: 600;
    color: #181818;
    margin: 0 0 8px 0;
    line-height: 23px;
    font-family: 'Inter';
}

.summary-description {
    font-size: 14px;
    line-height: 20px;
    color: #666666;
    margin-bottom: 24px;
    font-weight: 400;
}

.summary-breakdown {
    margin-bottom: 32px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.breakdown-label {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
    line-height: 20px;
    font-family: 'Inter';
}

.breakdown-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
    margin-top: 20px;
}

.total-label {
    font-size: 14px;
    line-height: 20px;
    font-family: 'Inter';
    font-weight: medium;
    color: #525254;
}

.total-value {
    font-size: 20px;
    line-height: 24px;
    font-family: 'Inter';
    font-weight: 700;
    color: #1a1a1a;
}

.complete-payment-btn {
    width: 100%!important;
    background-image: linear-gradient(180deg, #693EFB 0%, #7349FC 100%)!important;
    color: #ffffff !important;
    font-family: 'Inter' !important;
    line-height: 20px !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: medium !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
}

.complete-payment-btn:hover {
    background: #6d28d9;
    transform: translateY(-1px);
}

.custom-cart-empty {
    text-align: center;
    padding: 80px 40px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    max-width: 600px;
    margin: 60px auto;
}

.custom-cart-empty h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.custom-cart-empty p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 24px;
}

.btn-continue-shopping {
    display: inline-block;
    background: #7c3aed;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
}

.btn-continue-shopping:hover {
    background: #6d28d9;
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .cart-page-container {
        flex-direction: column;
        gap: 40px;
        padding: 30px 20px;
    }

    .order-summary-section {
        width: 100%;
        order: -1;
    }

    .selected-packages {
        max-width: 100%;
    }

    .package-item {
        flex-wrap: wrap;
    }

    .package-details {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .cart-page-container {
        padding: 20px 15px;
    }

    .packages-title {
        font-size: 24px;
    }

    .packages-description {
        font-size: 15px;
    }

    .summary-card {
        padding: 24px;
    }

    .package-item {
        padding: 20px 0;
    }

    .package-image {
        width: 60px;
        height: 60px;
    }

    .package-name {
        font-size: 16px;
    }

    .package-price {
        font-size: 18px;
        margin-left: 0;
        margin-top: 12px;
    }
}