body.checkout-apple {
    background-color: var(--lg-color-white);
    font-family: "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    color: #1d1d1f;
    margin: 0;
}

.checkout-apple .site-header,
.checkout-apple #main .service-carousel,
.checkout-apple .site-footer {
    display: none;
}

.checkout-shell {
    max-width: 960px;
    margin: 0 auto 80px;
    padding: clamp(16px, 4vw, 32px) 20px 0;
}

.checkout-shell h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    text-align: center;
}

.checkout-shell .subtitle {
    text-align: center;
    font-size: 1rem;
    color: #6e6e73;
    margin-bottom: 32px;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto 32px;
}

.checkout-actions button {
    height: 48px;
    border-radius: 999px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checkout-actions button:focus-visible {
    outline: 2px solid #0071e3;
    outline-offset: 3px;
}

.checkout-primary {
    background-color: #0071e3;
    color: var(--lg-color-white);
}

.checkout-secondary {
    background-color: #1d1d1f;
    color: var(--lg-color-white);
}

.checkout-card {
    border-top: 1px solid #d2d2d7;
    padding: 32px 0;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
}

.checkout-card:first-of-type {
    border-top: 1px solid #d2d2d7;
}

.checkout-card img {
    width: 140px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.product-meta {
    font-size: 0.95rem;
    color: #6e6e73;
    margin: 4px 0 12px;
}

.product-price {
    font-weight: 600;
    font-size: 1.1rem;
    margin-left: auto;
}

.card-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.link-inline {
    color: #0066cc;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.link-inline:hover {
    text-decoration: underline;
}

/* Belirgin Verwijderen button */
.remove-item {
    background: #dc3545 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #dc3545 !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.remove-item:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    text-decoration: none !important;
}

/* Sepeti Boşalt button */
.clear-cart-button {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.clear-cart-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #e55a2b 0%, #e08216 100%);
}

.cart-actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f5f5f7;
    border-radius: 12px;
    margin-bottom: 32px;
}

.cart-actions-bar .helper-text {
    color: #6e6e73;
    font-size: 14px;
}

.support-offer {
    background-color: #f5f5f7;
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    font-size: 0.95rem;
}

.support-offer strong {
    display: block;
    margin-bottom: 8px;
}

.support-offer ul {
    margin: 0;
    padding-left: 20px;
    color: #515154;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 0.95rem;
    color: #515154;
    gap: 12px;
}

.card-footer svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.order-summary {
    border-top: 1px solid #d2d2d7;
    padding-top: 32px;
    margin-top: 16px;
}

.summary-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1rem;
}

.summary-total {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
}

.tax-note {
    color: #86868b;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.usp-card {
    background: #f5f5f7;
    border-radius: 12px;
    padding: 16px;
    font-size: 0.95rem;
}

.usp-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.empty-cart-text {
    text-align: center;
    color: #6e6e73;
    margin-top: 24px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .checkout-card {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .checkout-card img {
        width: 220px;
        justify-self: center;
    }

    .checkout-actions {
        width: 100%;
    }

    .card-footer {
        flex-direction: column;
    }
}

