.product-quantity>.col {
    margin-top: 0.6rem!important;
    margin-bottom: 0!important;
    float: left!important;
}

/* Modern Order Type Selector */
.order-type-selector-modern {
    position: relative;
    display: inline-block;
    min-width: 180px;
}

.order-type-dropdown {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.order-type-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #fff;
    border: 2px solid #e6e6e6;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    min-height: 40px;
}

.order-type-selected:hover {
    border-color: #6c757d;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.15);
}

.order-type-dropdown.open .order-type-selected {
    border-color: #6c757d;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.15);
}

.order-type-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #666;
}

.order-type-dropdown.open .order-type-arrow {
    transform: rotate(180deg);
}

.order-type-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #6c757d;
    border-top: none;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.order-type-dropdown.open .order-type-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.order-type-option {
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
}

.order-type-option:last-child {
    border-bottom: none;
}

.order-type-option:hover {
    background: #f8f9fa;
    color: #6c757d;
}

.order-type-option.active {
    background: #6c757d;
    color: #fff;
    font-weight: 500;
}

.order-type-option.active:hover {
    background: #5a6268;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .order-type-selector-modern {
        min-width: 150px;
        width: 100%;
    }
    
    .order-type-selected {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .order-type-option {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    /* Mobile specific styling */
    .order_type_mobile .order-type-selector-modern {
        margin: 10px 0;
    }
    
    /* Shopping cart mobile styling */
    #blockcart-content .order-type-selector-modern {
        margin: 15px 0;
    }
}
