.checkout-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: #fff;
    border-radius: 10px;
}

.checkout-left {
    flex: 1.5;
    min-width: 320px;
}

.checkout-right {
    flex: 1;
    min-width: 300px;
}

.checkout-right label {
    margin-bottom: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px !important;
}

.form-grid select,
.form-grid input {
    padding: 10px;
    width: 100%;
}

.phone-input {
    display: flex;
    align-items: center;
    gap: 5px;
}

.phone-input span {
    padding: 10px;
    background: #eee;
}

textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

.order-summary {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px !important;
    background-color: #fafafa;
}

.order-summary h3 a {
    float: right;
    font-size: 14px;
}

.order-item {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 1rem;
}

.order-item p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
}

.payment-methods {
    margin-bottom: 20px !important;
}

.payment-methods h3,
.order-summary h3,
.checkout-left h2 {
    font-size: 20px;
}

.payment-option {
    display: block;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px 0;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
}

.checkout-left p {
    margin: 10px 0 !important;
}

.checkout-left label,
.checkout-left h2 {
    margin-bottom: 10px !important;
}

input {
    accent-color: var(--black-color);
}

.payment-option.active {
    border-color: #ff4d00;
    background: #fff3ed;
}

.payment-option img {
    float: right;
    height: 20px;
    margin-left: 10px;
}

.pay-method {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
    margin-left: 25px;
}

.terms {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px !important;
}

.terms a {
    color: #000;
}

.pay-button {
    width: 100%;
    padding: 12px;
    background: #000;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

.secure-pay {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.secure-pay img {
    width: 36px;
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-container {
        flex-direction: column;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .payment-option img {

        position: absolute;
        right: 26px;
        width: 57px;
        object-fit: contain;
    }
}