    .form-row>*:not(:last-child) {
        margin-right: 20px;
    }

    .checkout-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;

        h1 {
            text-align: center;
            color: #333;
            margin-bottom: 30px;
            font-size: 2.5rem;
        }

        .checkout-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .order-summary,
        .customer-info {
            background: #f8f9fa;
            padding: 30px;
            border: 1px solid #e9ecef;
        }

        .order-summary h2,
        .customer-info h2 {
            color: #495057;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #dee2e6;
        }

        .checkout-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #dee2e6;

            &:last-child {
                border-bottom: none;
            }

            .item-image {
                width: 60px;
                height: 60px;
                margin-right: 15px;
                flex-shrink: 0;

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

            .item-details {
                flex-grow: 1;

                h4 {
                    margin: 0 0 5px 0;
                    color: #495057;
                    font-size: 1rem;
                }
            }

            .item-category {
                margin: 0 0 5px 0;
                color: #6c757d;
                font-size: 0.875rem;
            }

            .quantity {
                margin: 0;
                color: #6c757d;
                font-size: 0.875rem;
            }

            .item-price {
                font-weight: bold;
                color: #495057;
                font-size: 1.1rem;
            }
        }

        .order-totals {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid #dee2e6;
        }

        .total-line {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #495057;

            &.final-total {
                margin-top: 10px;
                padding-top: 10px;
                border-top: 1px solid #dee2e6;
                font-size: 1.2rem;
            }
        }

        .checkout-form {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .form-section h3 {
            color: #495057;
            margin-bottom: 15px;
            font-size: 1.25rem;
        }

        .form-group {
            margin-bottom: 15px;

            &.half {
                flex: 1;
            }

            &.third {
                flex: 1;
            }

            label {
                display: block;
                margin-bottom: 5px;
                color: #495057;
                font-weight: 500;
            }
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ced4da;
            font-size: 1rem;
            box-sizing: border-box;
            transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

            &:focus {
                outline: none;
                border-color: #80bdff;
                box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
            }
        }

        .form-row {
            display: flex;
            flex-direction: row;
            gap: 20px;
        }

        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
            }
        }

        .payment-methods,
        .pickup-notice {
            text-align: center;
            padding: 20px;
            background: #fff;
            border: 1px solid #dee2e6;
            margin-top: 10px;

            p {
                margin: 0 0 15px 0;
                color: #6c757d;
                font-size: 0.9rem;
                font-weight: 500;
            }

            .payment-logos {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 15px;
            }

            .payment-logo {
                height: 30px;
                width: auto;
                object-fit: contain;
            }
        }

        .terms-acceptance {
            padding: 20px;
            background: #fff;
            border: 1px solid #dee2e6;
            margin-top: 10px;

            .checkbox-group {
                display: flex;
                align-items: center;
                margin-bottom: 0;

                .form-checkbox {
                    width: auto;
                    margin-right: 10px;
                    cursor: pointer;
                    transform: scale(1.2);
                }

                label {
                    margin-bottom: 0;
                    cursor: pointer;
                    font-weight: normal;
                    color: #495057;

                    a {
                        color: var(--primary-color);
                        text-decoration: underline;

                        &:hover {
                            color: var(--primary-color-dark);
                        }
                    }
                }
            }
        }

        .form-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;

            .btn {
                padding: 12px 24px;
                border: none;
                font-size: 1rem;
                font-weight: 500;
                text-decoration: none;
                display: inline-block;
                text-align: center;
                cursor: pointer;
                transition: all 0.2s ease-in-out;
                width: auto;
            }

            @media (max-width: 768px) {
                flex-direction: column;
                gap: 15px;

                .btn {
                    width: 100%;
                }
            }
        }

        .btn {
            padding: 12px 24px;
            border: none;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease-in-out;

            &.btn-primary {
                background-color: var(--primary-color);
                color: white;

                &:hover {
                    background-color: var(--primary-color-dark);
                    transform: translateY(-1px);
                }
            }

            &.btn-secondary {
                background-color: var(--neutral-color);
                color: white;

                &:hover {
                    background-color: #545b62;
                }
            }

            &.btn-large {
                padding: 15px 30px;
                font-size: 1.1rem;
            }

            &.disabled,
            &:disabled {
                background-color: #ccc;
                color: #666;
                cursor: not-allowed;
                opacity: 0.6;

                &:hover {
                    background-color: #ccc;
                    transform: none;
                }
            }
        }

        @media (max-width: 768px) {
            .checkout-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
    }
