* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial;
    background: #f5f7fb;
}

body.dark {
    background: #07111f;
}

body.dark .cart-item,
body.dark .cart-summary {
    background: #111827;
    color: #edf4ff;
    border: 1px solid #334155;
}

body.dark .cart-info p,
body.dark .summary-row,
body.dark .section-title h2 {
    color: #cbd5e1;
}

.cart-page {
    width: 90%;
    margin: 40px auto;

    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.cart-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title h2 {
    font-size: 32px;
}

.cart-item {
    background: white;
    border-radius: 18px;
    padding: 18px;

    display: flex;
    align-items: center;
    gap: 20px;

    position: relative;
}

.cart-image {
    width: 180px;
    height: 120px;
    border-radius: 14px;
    overflow: hidden;
}

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

.cart-info {
    flex: 1;
}

.cart-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.cart-info p {
    color: gray;
    margin-bottom: 18px;
}

.cart-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-box button {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: #0E53B5;
    color: white;
    cursor: pointer;
}

.cart-bottom h4 {
    color: #0E53B5;
    font-size: 24px;
}

.remove-btn {
    position: absolute;
    top: 15px;
    right: 15px;

    border: none;
    background: none;
    font-size: 22px;
    color: red;
    cursor: pointer;
}

.cart-summary {
    background: white;
    padding: 25px;
    border-radius: 18px;
    height: fit-content;
}

.cart-summary h2 {
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.total {
    font-size: 22px;
    font-weight: bold;
}

.checkout-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: #0E53B5;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
}


.delivery-options {
    margin-top: 25px;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.delivery-options h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.delivery-options label {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px;
    border-radius: 12px;
    background: #f1f5f9;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid transparent;
}

.delivery-options label:hover {
    border-color: #0E53B5;
}

.delivery-options input[type="radio"] {
    accent-color: #0E53B5;
    width: 18px;
    height: 18px;
}

body.dark .delivery-options label {
    background: #0f172a;
    color: #edf4ff;
    border: 1px solid #334155;
}

body.dark .delivery-options label:hover {
    border-color: #0E53B5;
}

@media(max-width:900px) {

    .cart-page {
        grid-template-columns: 1fr;
    }

}

@media(max-width:600px) {

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-image {
        width: 100%;
        height: 220px;
    }

}