.volvo-status-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #28a745;
}

.volvo-form-wrapper input,
.volvo-form-wrapper select,
.volvo-form-wrapper textarea,
.volvo-form-wrapper select,
.volvo-form-wrapper textarea {
    width: 100%;
    padding: 16px 22px;
    margin-bottom: 24px;
    border: 1px solid #0A0A0A;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: volvo-regular, sans-serif;
}

.volvo-form-wrapper textarea {
    resize: vertical;
    min-height: 200px;
}

.input-box {
    display: flex;
    gap: 24px
}

.agree-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #000000;
    margin-bottom: 40px;
}

.agree-box input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #28a745;
}

.agree-box span {
    user-select: none;
}

.agree-box:hover span {
    color: #1c2b39;
}

.volvo-form-wrapper button,
.btn-submit-order {
    background-color: #1F1F1F;
    color: white;
    padding: 18px 24px;
    border: none;
    cursor: pointer;
    /* width: 100%; */
    /* font-weight: bold; */
    /* transition: background 0.3s; */
    border-radius: 2px;
    margin-bottom: 24px;
}

.volvo-form-wrapper button:hover {
    background-color: #2a3f52;
}

.volvo-form-wrapper .upload-box {
    position: relative;
    border: 1px dashed #999;
    background: #f8f8f8;
    height: 180px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
}

.volvo-form-wrapper .upload-box input[type="file"] {
    position: absolute;
    /* width: 100%; */
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.radio-box {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.radio-box label {
    display: flex;
    width: 50%;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-box input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #000000;
}

.radio-box input[type="radio"]:hover {
    accent-color: #1c2b39;
}

.radio-box label:hover span {
    color: #1c2b39;
}

.preview-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: white;
}

#preview-front,
#preview-back {
    pointer-events: none;
}

/* Style oders */
.table-input-box {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #FAFAFA;
    border-radius: 8px
}

.table-input-box label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.table-number-input {
    width: 100px !important;
    text-align: center;
    padding: 10px;
}

.volvo_order_form .menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.volvo_order_form .menu-item {
    border: 1px solid #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
    background: #ffffff;
    position: relative;
}

.volvo_order_form .menu-item.selected {
    border: 2px solid #2e7d32;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}

.volvo_order_form .menu-item img {
    width: 100%;
    max-width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.quantity-control {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    border: 1px solid #f1f1f1;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
}

.qty-input {
    width: 30px;
    text-align: center;
    border: none;
    background: none;
    font-weight: bold;
    font-size: 14px;
    color: #000;
}

.btn-minus,
.btn-plus {
    width: 30px;
    height: 30px;
    cursor: pointer;
    border: none;
    background: #f1f1f1;
    font-size: 18px;
}

.order-summary {
    background: #FAFAFA;
    padding: 25px;
    margin-top: 30px;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

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

    .volvo-order-container {
        padding: 10px;
    }

    .menu-item img {
        max-width: 180px;
    }
}