.quantity {
    display: flex;
    align-items: center; /* Vertically aligns items */
    gap: 5px; /* Adjust spacing between elements */
}

.quantity-input {
    width: 50px; /* Set consistent width for the input */
    height: 36px; /* Match the button height */
    text-align: center; /* Center the text inside the input */
    font-size: 16px; /* Adjust font size */
    line-height: normal; /* Reset line-height for inputs */
    border: 1px solid #ccc; /* Keep the border visible */
    border-radius: 4px; /* Optional for rounded borders */
}

.quantity-input:focus {
    outline: none; /* Remove focus outline */
    border-color: #007bff; /* Optional: highlight border on focus */
}

.btn-qua {
    /* padding: 0 12px; Adjust button padding */
    height: 36px; /* Match input height */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px; /* Adjust font size */
    border-radius: 4px; /* Match input's rounded corners */
}

.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.image-preview {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.image-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

.image-close:hover {
    color: #ddd;
}

.clickable-image {
    transition: transform 0.2s ease;
    cursor: pointer;
}

.clickable-image:hover {
    transform: scale(1.03);
}