body {
    background: #f7f8fa;
    min-height: 100vh;
    max-width :100vw;
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    color: #222;
    box-sizing: border-box;
}

.checkoutLayout {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    padding: 16px;
    margin: 0 auto;
    max-width: 1100px;
    min-height: 100vh;
    box-sizing: border-box;
}

.checkoutLayout .right {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    color: #2d2d2d;
    padding: 16px;
    margin-top: 16px;
    border: 1px solid #eee;
}

.checkoutLayout .right h1 {
    color: #333;
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

.checkoutLayout .form .group label {
    color: #333;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    font-size: 0.95rem;
}

.checkoutLayout .form input,
.checkoutLayout .form select,
.checkoutLayout .form textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    color: #2d2d2d;
    margin-top: 6px;
    font-size: 1rem;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: none;
}
.checkoutLayout .form input:focus,
.checkoutLayout .form select:focus,
.checkoutLayout .form textarea:focus {
    border: 1px solid #4b2ce6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(75,44,230,0.12);
}

.checkoutLayout .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafbfc;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 10px;
    font-size: 1rem;
    box-shadow: none;
    border: 1px solid #eee;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

.checkoutLayout .row div:nth-child(2) {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

.buttonCheckout {
    background: #4b2ce6;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 16px;
    margin-top: 16px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}
.buttonCheckout:hover {
    background: #3b1fd6;
}

.reviewBtn {
    background: #fff;
    color: #4b2ce6;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 10px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.reviewBtn:hover {
    background: #f4f6fb;
    border-color: #ccc;
}
.reviewBtn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(75,44,230,0.12);
}
.returnCart .item .actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.returnCart .item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    margin-bottom: 12px;
    padding: 8px 10px;
    border: 1px solid #eee;
    display: grid;
    grid-template-columns: 70px 1fr 50px 80px;
    align-items: center;
    gap: 12px;
}
.returnCart .item img {
    height: 70px;
    border-radius: 8px;
    box-shadow: none;
    object-fit: cover;
}
.returnCart .item .name,
.returnCart .item .returnPrice {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.checkoutLayout .right .form .quantity,
.returnCart .item .quantity {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}
.returnCart .item .quantity button {
    background: #f0f2f5;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 0;
    transition: background 0.2s, transform 0.1s;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.returnCart .item .quantity button:hover {
    background: #e9ecf1;
    transform: scale(1.04);
}
.returnCart .item .quantity .value {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .checkoutLayout {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
        margin: 0;
        border-radius: 8px;
        min-height: 100vh;
        width: 100%;
        max-width: 100%;
    }
    .checkoutLayout .right {
        margin-top: 0;
        padding: 12px;
    }
    .returnCart .item {
        grid-template-columns: 56px 1fr 36px 72px;
        gap: 8px;
        padding: 6px 8px;
    }
    .returnCart .item img {
        height: 56px;
    }
}
@media (max-width: 600px) {
    .checkoutLayout {
        padding: 12px;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        min-height: 100vh;
        width: 100%;
        max-width: 100%;
    }
    .checkoutLayout .right {
        padding: 12px;
        border-radius: 0;
        box-shadow: none;
    }
    .returnCart .item {
        grid-template-columns: 44px 1fr 30px 64px;
        gap: 6px;
        padding: 6px 6px;
    }
    .returnCart .item img {
        height: 44px;
    }
}
